/* latest css 
Theme Name: Puzzle Quest Immortal
Description: A responsive single-page WordPress theme for Puzzle Quest Immortal game
Version: 1.0
Author: Custom Theme
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Full Page Background - Optimized for all resolutions */
.puzzle-quest-container {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    background: url('assets/puzzle-quest-bg.jpg') center top no-repeat;
    background-size: cover;
    background-attachment: scroll;
    margin: 0;
    padding: 0;
    padding-bottom: 0;
}

/* ========================================
   RESOLUTION-SPECIFIC MEDIA QUERIES
   (Ordered from smallest to largest)
   ======================================== */

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    /* Background Container */
    .puzzle-quest-container {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        min-height: 100vh;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 0;
        min-height: 100vh;
    }
    
    /* Navigation Bar */
    .main-nav {
        padding: 12px 15px;
        position: fixed;
        background: rgba(0, 0, 0, 0.4);
    }
    
    /* Navigation Links */
    .nav-links {
        margin: 0 10px;
        padding: 25px 15px;
        width: calc(100% - 20px);
    }
    
    .nav-links a {
        font-size: 14px;
    }
    
    /* Buy Now Button */
    .buy-now-image {
        width: 160px;
        height: auto;
        margin-top: 80px;
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        font-size: 22px;
        padding: 8px;
    }
    
    /* Hero Logo Section */
    .logo-section {
        margin-top: 28vh;
        margin-bottom: 6vh;
        padding: 0 15px;
    }
    
    .puzzle-quest-logo {
        max-width: 400px;
        width: 90%;
    }
    
    /* Challenge Text Section */
    .challenge-section {
        padding: 50px 15px;
    }
    
    .challenge-title {
        font-size: 28px;
    }
    
    .challenge-description {
        font-size: 16px;
        max-width: 350px;
    }
    
    /* About Section */
    .about-text-right {
        margin: 15px auto;
        max-width: calc(100% - 30px);
        padding: 25px 15px;
    }
    
    .about-title {
        font-size: 22px;
    }
    
    .about-text-right p {
        font-size: 13px;
    }
    
    /* Content Sections */
    .content-section {
        padding: 50px 15px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    /* Features Section */
    .features-list {
        margin: 0 5px;
        padding: 25px 15px;
    }
    
    .features-list li {
        font-size: 14px;
        padding: 8px 0;
    }
    
    /* Media Section */
    .media-placeholder {
        height: 250px;
        margin: 20px 0;
    }
    
    /* Signup Section */
    .signup-section {
        padding: 50px 15px;
    }
    
    .signup-section .section-content {
        padding: 30px 15px;
        max-width: calc(100% - 30px);
    }
    
    /* Signup Form */
    .signup-form input {
        font-size: 14px;
        padding: 12px;
    }
    
    .signup-form button {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    /* About Section */
    .about-text-right {
        max-width: 520px;
        padding: 45px;
    }
    
    .about-title {
        font-size: 30px;
    }
    
    .about-text-right p {
        font-size: 15px;
    }
    
    /* Features Section */
    .features-list {
        max-width: 620px;
        padding: 45px;
    }
    
    .features-list li {
        font-size: 17px;
    }
    
    /* Media Section */
    .media-carousel-container {
        max-width: 950px;
    }
    
    .media-carousel {
        max-width: 750px;
        height: 420px;
    }
    
    .placeholder-image {
        font-size: 22px;
    }
    
    .media-section .section-content {
        padding: 70px 50px;
        max-width: 950px;
    }
    
    /* Signup Section */
    .signup-section {
        padding: 90px 50px;
        margin-bottom: 0;
    }
    
    .signup-section .section-content {
        padding: 70px 50px;
        max-width: 850px;
        margin-bottom: 0;
    }
}

/* 1536px Resolution - Standard Desktop */
@media (min-width: 1536px) {
    /* Background Container */
    .puzzle-quest-container {
        background-size: 100% auto;
        background-position: center top;
        min-height: 100vh;
    }
    
    /* Navigation Bar */
    .main-nav {
        padding: 20px 50px;
    }
    
    /* Navigation Links */
    .nav-links {
        gap: 50px;
    }
    
    .nav-links a {
        font-size: 15px;
    }
    
    /* Buy Now Button */
    .buy-now-image {
        width: 200px;
        height: auto;
        margin-top: 120px;
    }
    
    /* Hero Logo Section */
    .logo-section {
        margin-top: 32vh;
        margin-bottom: 8vh;
    }
    
    .puzzle-quest-logo {
        max-width: 850px;
		margin-top: 200px !important;
    }
    
    /* Challenge Text Section */
    .challenge-section {
        padding: 80px 20px;
    }
    
    .challenge-title {
        font-size: 42px;
    }
    
    .challenge-description {
        font-size: 22px;
        max-width: 700px;
    }
    
    /* About Section */
    .about-text-right {
        max-width: 520px;
        padding: 45px;
		margin-top: -350px !important;
    }
    
    .about-title {
        font-size: 30px;
    }
    
    .about-text-right p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Content Sections */
    .content-section {
        padding: 80px 50px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    /* Features Section */
    .features-list {
        max-width: 600px;
        padding: 40px;
    }
    
    .features-list li {
        font-size: 16px;
        padding: 10px 0;
    }
    
    /* Media Section */
    .media-placeholder {
        height: 400px;
        max-width: 800px;
        margin: 30px auto;
    }
    
    /* Signup Section */
    .signup-section {
        padding: 80px 50px;
    }
    
    .signup-section .section-content {
        padding: 60px 40px;
        max-width: 700px;
    }
    
    /* Signup Form */
    .signup-form input {
        font-size: 16px;
        padding: 14px;
    }
    
    .signup-form button {
        font-size: 16px;
        padding: 14px 24px;
    }
    
    /* About Section */
    .about-text-right {
        max-width: 550px;
        padding: 50px;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .about-text-right p {
        font-size: 16px;
    }
    
    /* Features Section */
    .features-list {
        max-width: 650px;
        padding: 50px;
    }
    
    .features-list li {
        font-size: 18px;
    }
    
    /* Media Section */
    .media-carousel-container {
        max-width: 900px;
    }
    
    .media-carousel {
        max-width: 700px;
        height: 400px;
    }
    
    .placeholder-image {
        font-size: 20px;
    }
    
    .media-section .section-content {
        padding: 75px 60px;
        max-width: 1000px;
    }
    
    /* Signup Section */
    .signup-section {
        padding: 95px 60px;
        margin-bottom: 0;
    }
    
    .signup-section .section-content {
        padding: 75px 60px;
        max-width: 900px;
        margin-bottom: 0;
    }
}

/* 1680px Resolution - Full HD */
@media (min-width: 1680px) {
    /* Background Container */
    .puzzle-quest-container {
        background-size: 100% auto;
        background-position: center top;
        min-height: 100vh;
    }
    
    /* Navigation Bar */
    .main-nav {
        padding: 22px 60px;
    }
    
    /* Navigation Links */
    .nav-links {
        gap: 55px;
    }
    
    .nav-links a {
        font-size: 16px;
    }
    
    /* Buy Now Button */
    .buy-now-image {
        width: 220px;
        height: auto;
        margin-top: 140px;
    }
    
    /* Hero Logo Section */
    .logo-section {
        margin-top: 34vh;
        margin-bottom: 9vh;
    }
    
    .puzzle-quest-logo {
        max-width: 900px;
    }
    
    /* Challenge Text Section */
    .challenge-section {
        padding: 90px 20px;
    }
    
    .challenge-title {
        font-size: 44px;
    }
    
    .challenge-description {
        font-size: 23px;
        max-width: 750px;
    }
    
    /* About Section */
    .about-text-right {
        max-width: 550px;
        padding: 50px;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .about-text-right p {
        font-size: 17px;
        line-height: 1.7;
    }
    
    /* Content Sections */
    .content-section {
        padding: 90px 60px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    /* Features Section */
    .features-list {
        max-width: 650px;
        padding: 45px;
    }
    
    .features-list li {
        font-size: 17px;
        padding: 11px 0;
    }
    
    /* Media Section */
    .media-placeholder {
        height: 450px;
        max-width: 850px;
        margin: 35px auto;
    }
    
    /* Signup Section */
    .signup-section {
        padding: 90px 60px;
    }
    
    .signup-section .section-content {
        padding: 70px 50px;
        max-width: 850px;
    }
    
    /* Signup Form */
    .signup-form input {
        font-size: 17px;
        padding: 15px;
    }
    
    .signup-form button {
        font-size: 17px;
        padding: 15px 26px;
    }
    
    /* About Section */
    .about-text-right {
        max-width: 650px;
        padding: 60px;
    }
    
    .about-title {
        font-size: 38px;
    }
    
    .about-text-right p {
        font-size: 18px;
        line-height: 1.7;
    }
    
    /* Features Section */
    .features-list {
        max-width: 750px;
        padding: 60px;
    }
    
    .features-list li {
        font-size: 20px;
        padding: 14px 0;
    }
    
    /* Media Section */
    .media-carousel-container {
        max-width: 1200px;
    }
    
    .media-carousel {
        max-width: 1000px;
        height: 500px;
    }
    
    .placeholder-image {
        font-size: 28px;
    }
    
    .media-section .section-content {
        padding: 90px 70px;
        max-width: 1200px;
    }
    
    /* Signup Section */
    .signup-section {
        padding: 110px 70px;
        margin-bottom: 0;
    }
    
    .signup-section .section-content {
        padding: 90px 70px;
        max-width: 1000px;
        margin-bottom: 0;
    }
}

/* 1920px Resolution - Full HD+ */
@media (min-width: 1920px) {
    /* Background Container */
    .puzzle-quest-container {
        background-size: 100% auto;
        background-position: center top;
        min-height: 100vh;
    }
    
    /* Navigation Bar */
    .main-nav {
        padding: 25px 70px;
    }
    
    /* Navigation Links */
    .nav-links {
        gap: 60px;
    }
    
    .nav-links a {
        font-size: 18px;

    }
    
    /* Buy Now Button */
    .buy-now-image {
        width: 200px;
        height: auto;
        margin-top: 180px;
    }
    
    /* Hero Logo Section */
    .logo-section {
        margin-top: 30vh;
        margin-bottom: 8vh;
    }
    
    .puzzle-quest-logo {
        max-width: 1050px;
    }
    
    /* Challenge Text Section */
    .challenge-section {
        padding: 100px 20px;
		margin-top: -400px !important;
    }
    
    .challenge-title {
        font-size: 50px;
    }
    
    .challenge-description {
        font-size: 26px;
        max-width: 900px;
    }
    
    /* About Section */
    .about-text-right {
        max-width: 650px;
        padding: 60px;
		margin-top: -50px !important;
    }
    
    .about-title {
        font-size: 38px;
    }
    
    .about-text-right p {
        font-size: 18px;
        line-height: 1.8;
    }
    
    /* Content Sections */
    .content-section {
        padding: 100px 70px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    /* Features Section */
    .features-list {
        max-width: 700px;
        padding: 50px;
    }
    
    .features-list li {
        font-size: 18px;
        padding: 12px 0;
    }
    
    /* Media Section */
    .media-placeholder {
        height: 500px;
        max-width: 900px;
        margin: 40px auto;
		margin-top: 800px !important;
    }
    
    /* Signup Section */
    .signup-section {
        padding: 100px 70px;
    }
    
    .signup-section .section-content {
        padding: 80px 60px;
        max-width: 900px;
    }
    
    /* Signup Form */
    .signup-form input {
        font-size: 18px;
        padding: 16px;
    }
    
    .signup-form button {
        font-size: 18px;
        padding: 16px 28px;
    }
    
    /* About Section */
    .about-text-right {
        max-width: 750px;
        padding: 70px;
    }
    
    .about-title {
        font-size: 42px;
    }
    
    .about-text-right p {
        font-size: 20px;
        line-height: 1.8;
    }
    
    /* Features Section */
    .features-list {
        max-width: 850px;
        padding: 70px;
    }
    
    .features-list li {
        font-size: 22px;
        padding: 16px 0;
    }
    
    /* Media Section */
    .media-carousel-container {
        max-width: 1400px;
    }
    
    .media-carousel {
        max-width: 1200px;
        height: 550px;
    }
    
    .placeholder-image {
        font-size: 32px;
    }
    
    .carousel-arrow {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .media-section .section-content {
        padding: 110px 90px;
        max-width: 1400px;
    }
    
    /* Signup Section */
    .signup-section {
        padding: 130px 90px;
    }
    
    .signup-section .section-content {
        padding: 110px 90px;
        max-width: 1200px;
    }
}

/* Header/Hero Section - Fixed positioning for all resolutions */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    width: 100%;
    max-width: 100vw;
}

/* Navigation - Consistent positioning across all resolutions */
.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    background: transparent;
    backdrop-filter: none;
    transition: all 0.3s ease;
}

/* Navigation with scroll background - thin full-width background */
.main-nav.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-container.scrolled {
    padding: 8px 0;
    transition: all 0.3s ease;
}

/* Top gradient overlay for nav visibility */
.puzzle-quest-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #ffd700;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.buy-now-link {
    display: inline-block;
    position: relative;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.buy-now-image {
    width: 120px;
    height: auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.buy-now-link:hover .buy-now-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5)) brightness(1.1);
}

/* Logo Section - Fixed positioning for all screen sizes */
.logo-section {
    text-align: center;
    margin-top: 35vh;
    margin-bottom: 10vh;
    padding: 0 20px;
}

.puzzle-quest-logo {
    max-width: 800px;
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Challenge Section Styling */
.challenge-section {
    text-align: center;
    padding: 80px 20px;
 
}

.challenge-title {
    font-size: 38px;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 20px;
    font-weight: bold;
}

.challenge-description {
    font-size: 24px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Text Right Positioning - Fixed for all resolutions */
.about-text-right {
    max-width: 500px;
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    padding: 40px;
    /*background: rgba(0, 0, 0, 0.7);*/
    border-radius: 15px;
   /* backdrop-filter: blur(10px); */
    position: relative;
    z-index: 10;

}

.about-title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: bold;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.9);
    line-height: 1.2;
}

.about-text-right p {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
    margin-bottom: 15px;
}

/* Content Sections - Fixed positioning for all resolutions */
.content-section {
    padding: 100px 40px;
    position: relative;
    background: transparent;
    margin: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.content-section.about-section {
    background: transparent;
    padding: 100px 40px;
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.content-section.features-section {
    background: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.content-section.media-section {
    background: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-section.signup-section {
    background: transparent;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-content {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.about-section .section-content {
    text-align: right;
    margin: 0;
    padding-right: 80px;
    max-width: none;
    width: 100%;
}

.features-section .section-content {
    text-align: left;
    margin: 0;
    padding-left: 80px;
    max-width: none;
    width: 100%;

}

.media-section .section-content {
    text-align: center;
    margin: 0 auto;
}

.signup-section .section-content {
    text-align: center;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.about-section .section-title {
    text-align: right;
}

.features-section .section-title {
    text-align: left;
}

.media-section .section-title,
.signup-section .section-title {
    text-align: center;
}

.signup-section .section-title {
    text-align: center;
}

/* Features List - Left aligned in features section */
.features-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0;
    padding: 40px;
    border-radius: 15px;
	margin-top: -600px !important;

}

.features-list li {
    padding: 10px 0;
    font-size: 16px;
    position: relative;
    padding-left: 60px;
}

.features-list li:before {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url('assets/listicon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    transform: translateY(-50%);
}

/* Media Section - Fixed dimensions for all resolutions */
.media-placeholder {
    width: 100%;
    max-width: 800px;
    height: 400px;
    background: rgba(0,0,0,0.8);
    border: 2px solid #ffd700;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffd700;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.media-section .section-content {
    background: rgba(0,0,0,0.7);
    padding: 60px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sign Up Section - Centered in signup section */
.signup-section {
    padding: 100px 40px;
    text-align: center;
    margin-bottom: 0;
}

.signup-section .section-content {
    max-width: 800px;
   /* background: rgba(0, 0, 0, 0.7); */
    padding: 60px 40px;
    margin-bottom: 0;
    border-radius: 20px;
   /* backdrop-filter: blur(10px); */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Icon Row */
.icon-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.icon-placeholder {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.icon-placeholder:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.footer-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Media Carousel Styles */
.media-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-carousel {
    width: 100%;
    max-width: 800px;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.media-item {
    width: 90%;
    height: 90%;
    position: relative;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c1810, #4a2c1a);
    border: 2px solid #ffd700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffd700;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    transition: all 0.3s ease;
}

.placeholder-image:hover {
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transform: scale(1.02);
}

/* Carousel Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.9);
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

.buy-now-link {
    text-decoration: none;
    transition: transform 0.3s ease;
    position: absolute;
    right: 40px;
    z-index: 1001;
    top: 50%;
    transform: translateY(-50%);
}

.buy-now-link:hover {
    transform: translateY(-50%) scale(1.05);
}

.buy-now-placeholder {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    white-space: nowrap;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buy-now-placeholder:hover {
    background: linear-gradient(45deg, #f7931e, #ff6b35);
    border-color: #ffd700;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
}

.buy-now-image {
    height: auto;
    width: 150px;
    transition: transform 0.3s ease;
    margin-top: 140px;
}

.buy-now-image:hover {
    transform: scale(1.05);
}

/* Form Styling */
.signup-form {
    margin: 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-row {
    margin-bottom: 20px;
}

.email-input,
.dob-input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    background: #ffffff;
    color: #333;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.email-input::placeholder {
    color: #666;
    text-transform: uppercase;
    font-weight: bold;
}

.email-input:focus,
.dob-input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Footer Text */
.footer-text {
    max-width: 600px;
    margin: 40px auto;
    color: #fff;
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
}

.footer-text p {
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Logo Row */
.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.footer-logo-placeholder {
    padding: 20px;
    border-radius: 10px;
    min-width: 120px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-logo-placeholder:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.footer-logo {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffd700;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    position: absolute;
    left: 20px;
    z-index: 10;
}

.mobile-menu-toggle:hover {
    background: rgba(255,255,255,0.1);
}

/* Mobile Responsive Design - Fixed background and positioning */
@media (max-width: 768px) {
    .puzzle-quest-container {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        min-height: 100vh;
    }
    
    .hero-section {
        padding: 0;
        min-height: 100vh;
    }
    
    .main-nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: transparent;
        backdrop-filter: none;
        padding: 20px 50px;
        transition: all 0.3s ease;
    }
    
    .main-nav.scrolled {
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
    }
    
    .puzzle-quest-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 120px;
        background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
        z-index: 1;
        pointer-events: none;
    }
    
    .nav-container {
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        z-index: 100;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        width: calc(100% - 40px);
        background: rgba(0,0,0,0.95);
        padding: 30px 20px;
        border-radius: 15px;
        margin: 0 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.7);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu-toggle {
        display: block;
        position: relative;
        top: 0;
        right: 0;
    }
    
    .nav-links.mobile-hidden {
        display: none;
    }
    
    .buy-now-link {
        margin: 20px 0 0 0;
        align-self: center;
        display: block;
    }
    
    .buy-now-image {
        width: 120px;
        height: auto;
        margin-top: 80px;
    }
    
    .logo-section {
        margin-top: 30vh;
        margin-bottom: 8vh;
        padding: 0 20px;
    }
    
    .puzzle-quest-logo {
        max-width: 450px;
        width: 85%;
    }
    
    .about-text-right {
        margin: 20px auto;
        max-width: calc(100% - 40px);
        margin-left: auto;
        margin-right: auto;
        padding: 30px 20px;
        text-align: center;
        background: rgba(0, 0, 0, 0.8);
        border-radius: 15px;
        backdrop-filter: blur(10px);
    }
    
    .about-section .section-content {
        text-align: center;
        padding-right: 0;
    }
    
    .features-section .section-content {
        text-align: center;
        padding-left: 0;
    }
    
    .features-list {
        margin: 0 auto;
    }
    
    .about-title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .about-section .section-title,
    .features-section .section-title {
        text-align: center;
    }
    
    .about-text-right p {
        font-size: 14px;
        line-height: 1.6;
        text-align: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .game-description h2 {
        font-size: 20px;
    }
    
    .game-description p {
        font-size: 14px;
    }
    
    .content-section {
        padding: 60px 20px;
        margin: 0;
        min-height: auto;
        display: block;
    }
    
    .content-section.about-section {
        padding: 40px 20px;
        min-height: auto;
        display: block;
        justify-content: flex-start;
    }
    
    .content-section.features-section {
        min-height: auto;
        display: block;
        justify-content: flex-start;
    }
    
    .content-section.media-section {
        min-height: auto;
        display: block;
    }
    
    .content-section.signup-section {
        min-height: auto;
        display: block;
    }
    
    .features-list {
        padding: 30px 20px;
        margin: 0 auto;
        max-width: calc(100% - 20px);
    }
    
    .media-carousel-container {
        margin: 20px auto;
    }
    
    .media-carousel {
        height: 250px;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .carousel-prev {
        left: -15px;
    }
    
    .carousel-next {
        right: -15px;
    }
    
    .placeholder-image {
        font-size: 14px;
    }
    
    .media-section .section-content {
        padding: 40px 20px;
        margin: 0 10px;
    }
    
    /* Mobile Footer Styling */
    .icon-row {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .icon-placeholder {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .signup-section {
        padding: 60px 20px;
    }
    
    .signup-section .section-content {
        padding: 40px 20px;
        margin: 0 10px;
    }
    
    .signup-form {
        margin: 30px 0;
    }
    
    .email-input,
    .dob-input {
        padding: 12px 15px;
        font-size: 12px;
    }
    
    .footer-text {
        font-size: 11px;
        margin: 30px auto;
        padding: 0 10px;
    }
    
    .logo-row {
        gap: 30px;
        margin-top: 30px;
    }
    
    .footer-logo-placeholder {
        padding: 15px;
        min-width: 100px;
        font-size: 12px;
    }

}
/* 1200px Resolution - Large Desktop */
@media (min-width: 1200px) {
    /* Navigation Links */
    .nav-links a {
        font-size: 16px;
    }
    
    /* Buy Now Button */
    .buy-now-image {
        width: 200px;
        height: auto;
        margin-top: 100px;
    }
    
    /* Hero Logo Section */
    .logo-section {
        margin-top: 30vh;
        margin-bottom: 8vh;
    }
    
    .puzzle-quest-logo {
        max-width: 1000px;
    }
    
    /* Challenge Text Section */
    .challenge-section {
        padding: 80px 20px;
    }
    
    .challenge-title {
        font-size: 46px;
    }
    
    .challenge-description {
        font-size: 24px;
        max-width: 800px;
    }
    
    /* About Section */
    .about-text-right {
        max-width: 650px;
        margin-right: 100px;
        margin-left: auto;
        padding: 50px;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .about-text-right p {
        font-size: 18px;
        line-height: 1.7;
    }
    
    /* Content Sections */
    .content-section {
        padding: 100px 60px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    /* Features Section */
    .features-list {
        max-width: 700px;
        padding: 50px;
    }
    
    .features-list li {
        font-size: 18px;
        padding: 12px 0;
		  padding-left: 35px;
    }
    
    /* Media Section */
    .media-placeholder {
        height: 500px;
        max-width: 1000px;
        margin: 40px auto;
    }
    
    /* Signup Section */
    .signup-section {
        padding: 100px 60px;
    }
    
    .signup-section .section-content {
        padding: 80px 60px;
        max-width: 900px;
    }
    
    /* Signup Form */
    .signup-form input {
        font-size: 16px;
        padding: 14px;
    }
    
    .signup-form button {
        font-size: 16px;
        padding: 14px 24px;
    }
}

/* 2560px Resolution - 4K */
@media (min-width: 2560px) {
    /* Background Container */
    .puzzle-quest-container {
        background-size: cover;
        background-position: center top;
        min-height: 100vh;
    }
    
    /* Navigation Bar */
    .main-nav {
        padding: 25px 70px;
    }
    
    /* Navigation Links */
    .nav-links {
        gap: 60px;
		margin-top: 20px;
		font-style: bold;
		font-size: 25px !important;
    }
    
    .nav-links a {
        font-size: 18px;
    }
    
    /* Buy Now Button */
    .buy-now-image {
        width: 280px;
        height: auto;
        margin-top: 300px !important;
    }
    
    /* Hero Logo Section */
    .logo-section {
        margin-top: 30vh;
        margin-bottom: 8vh;
    }
    
    .puzzle-quest-logo {
        max-width: 1700px;
		margin-top: 370px !important;
    }
    
    /* Challenge Text Section */
    .challenge-section {
        padding: 120px 20px;
		margin-top: -600px !important;
    }
    
    .challenge-title {
        font-size: 54px;
    }
    
    .challenge-description {
        font-size: 28px;
        max-width: 1000px;
		align-content: center !important;
    }
    
    /* About Section */
    .about-text-right {
        max-width: 750px;
        padding: 70px;
		align-content: center;
		margin-top: 50px !important;
				font-size: 28px !important;
    }
    
    .about-title {
        font-size: 42px;
    }
    
    .about-text-right p {
        font-size: 20px;
        line-height: 1.8;
    }
    
    /* Content Sections */
    .content-section {
        padding: 120px 80px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    /* Features Section */
    .features-list {
        max-width: 800px;
        padding: 60px;
		margin-top: -400px !important;
    }
    
    .features-list li {
        font-size: 20px;
        padding: 14px 0;
		    padding-left: 35px;
    }
	
	.features-section .section-content {
    text-align: left;
    padding-left: 80px;
    max-width: none;
    width: 100%;
    margin: 0px;
		margin-top: -600px;
}
	

    
    /* Media Section */
    .media-placeholder {
        height: 600px;
        max-width: 1200px;
        margin: 50px auto;
    }
	
		.custom-gallery-section {
  position: relative;
			margin-top: 100px !important;
}
    
    /* Signup Section */
    .signup-section {
        padding: 120px 80px;
		margin-top: 200px !important;
    }
    
    .signup-section .section-content {
        padding: 100px 80px;
        max-width: 1200px;
    }
    
    /* Signup Form */
    .signup-form input {
        font-size: 20px;
        padding: 18px;
    }
    
    .signup-form button {
        font-size: 20px;
        padding: 18px 32px;
    }
    
    .about-text-right {
        max-width: 1150px !important;
        margin-right: 150px;
        padding: 60px;
		margin-top: -300px !important;
		   font-size: 28px; 

    
}
    .about-title {
        font-size: 30px;
		margin-left: 260px !important;
    }
    
    .about-text-right p {
        font-size: 28px; !important;
    }
    
    .content-section {
        padding: 50px 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .nav-links a {
        font-size: 23px;
    }
    
    .buy-now-image {
        width: 250px;
        height: auto;
        margin-top: 60px;
    }
    
    .mobile-menu-toggle {
        font-size: 22px;
        padding: 8px;
    }
    
    .features-list {
        margin: 0 5px;
        padding: 25px 15px;
    }
    
    .media-section .section-content {
        margin: 0 5px;
        padding: 30px 15px;
    }
    
    .signup-section .section-content {
        margin: 0 5px;
        padding: 30px 15px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional styling for better visual hierarchy */
.section-content p {
    font-size: 23px;
    line-height: 1.2;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    text-align: center;
    color: #fff;

}

/* 3440px Resolution - Ultra-wide */
@media (min-width: 3440px) {
    /* Navigation Bar */
    .main-nav {
        padding: 30px 80px;
    }
    
    /* Navigation Links */
    .nav-links {
        gap: 80px;
    }
    
    .nav-links a {
        font-size: 20px;
    }
    
    /* Buy Now Button */
    .buy-now-image {
        width: 320px;
        height: auto;
        margin-top: 260px;
    }
    
    /* Hero Logo Section */
    .puzzle-quest-logo {
        max-width: 1400px;
    }
    
    /* Challenge Text Section */
    .challenge-section {
        padding: 120px 20px;
    }
    
    .challenge-title {
        font-size: 60px;
    }
    
    .challenge-description {
        font-size: 32px;
        max-width: 1200px;
    }
    
    /* About Section */
    .about-text-right {
        max-width: 750px;
        margin-right: 120px;
        margin-left: auto;
        padding: 60px;
    }
    
    .about-title {
        font-size: 40px;
    }
    
    .about-text-right p {
        font-size: 20px;
        line-height: 1.8;
    }
    
    /* Content Sections */
    .content-section {
        padding: 120px 80px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    /* Features Section */
    .features-list {
        max-width: 800px;
        padding: 60px;
    }
    
    .features-list li {
        font-size: 20px;
        padding: 14px 0;
		  padding-left: 45px;
    }
    
    /* Media Section */
    .media-placeholder {
        height: 600px;
        max-width: 1400px;
        margin: 50px auto;
    }
    
    /* Signup Section */
    .signup-section {
        padding: 120px 80px;
    }
    
    .signup-section .section-content {
        padding: 100px 80px;
        max-width: 1400px;
    }
    
    /* Signup Form */
    .signup-form input {
        font-size: 20px;
        padding: 18px;
    }
    
    .signup-form button {
        font-size: 20px;
        padding: 18px 32px;
    }
    
    .about-text-right {
        max-width: 750px;
        margin-right: 120px;
        padding: 60px;
    }
    
    .about-title {
        font-size: 40px;
    }
    
    .about-text-right p {
        font-size: 20px;
        line-height: 1.8;
    }
    
    .content-section {
        padding: 120px 80px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .features-list {
        max-width: 800px;
        padding: 60px;
    }
    
    .features-list li {
        font-size: 20px;
        padding: 15px 0;
    }
    
    .media-placeholder {
        height: 600px;
        max-width: 1200px;
    }
    
    .media-section .section-content {
        padding: 100px 80px;
        max-width: 1300px;
    }
    
    .signup-section {
        padding: 120px 80px;
    }
    
    .signup-section .section-content {
        padding: 100px 80px;
        max-width: 1000px;
    }
}

/* Footer */
.site-footer {
    background: transparent;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    margin: 10px 0;
    color: #fff;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}






/* Media carousel */





	.custom-gallery-section {
  position: relative;
}

.custom-art-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 700px;
  perspective: 1200px;
  overflow: visible;
}

.custom-slide {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  width: 50%;
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.custom-slide.active {
  opacity: 1;
  transform: translateY(-50%) scale(1) rotateY(0deg) translateX(0);
  z-index: 3;
  pointer-events: auto;
}

.custom-slide.left,
.custom-slide.right {
  width: 38%;
  opacity: 0.6;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}

.custom-slide.left {
  transform: translate(-50%, -50%) scale(0.8) rotateY(30deg);
}

.custom-slide.right {
  transform: translate(50%, -50%) scale(0.8) rotateY(-30deg);
}

.custom-media-container {
  position: relative;
  width: 100%;
  height: auto;
}

.custom-media-container img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #816241;
  border-radius: 8px;
}

.custom-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(30, 30, 30, 0.6);
  color: #fff;
  padding: 5px;
  font-size: 18px;
  text-align: center;
  border-radius: 0 0 8px 8px;
  border-top: 1px solid #816241;
}

.custom-nav {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

.custom-nav button {
  background: none;
  border: none;
  cursor: pointer;
}

.custom-nav button img {
  width: 26px;
  height: auto;
}









