/* Chronovale Studios - Main Stylesheet */

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

html,
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Montserrat Alternates', sans-serif;
    background-color: #222222;
    color: #FFECAD;
    line-height: 1.6;
}

/* Navigation Styles */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.logo {
    width: 50px;
    height: 50px;
    border: 3px solid #FFC300;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

.logo::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #E56D0A;
    border-radius: 50%;
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(45deg);
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(45deg);
    }

    to {
        transform: rotate(405deg);
    }
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #E56D0A;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFC300;
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(229, 109, 10, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(255, 195, 0, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at center, rgba(229, 109, 10, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 195, 0, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.44) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Updated Welcome Text */
.welcome-text {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 12px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #E56D0A 0%, #FFC300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.welcome-text::before,
.welcome-text::after {
    content: '';
    width: 300px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #E56D0A, #FFC300, transparent);
}

/* Updated Main Title */
.main-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(90deg, #E56D0A 0%, #FFC300 50%, #E56D0A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 8px;
    text-shadow: 0 0 30px rgba(229, 109, 10, 0.3);
    filter: drop-shadow(0 0 20px rgba(255, 195, 0, 0.4));
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* Subtitle Line */
.subtitle-line {
    width: 800px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #E56D0A, #FFC300, transparent);
    margin: 40px auto;
}

/* Tagline */
.tagline {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #E56D0A;
    letter-spacing: 1.5px;
    line-height: 1.6;
    margin-top: 30px;
}

/* About Section */
.about-section {
    padding: 100px 80px 120px;
    max-width: 1600px;
    margin: 0 auto;
    background-color: #2a2a2a;
}

.about-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-text {
    padding-right: 40px;
}

/* Large container frame for images */
.about-images-container {
    background: rgba(229, 109, 10, 0.1);
    border: 2px solid #E56D0A;
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    align-self: center;
    margin-top: 0px;
    box-shadow: 0 10px 30px rgba(229, 109, 10, 0.2);
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 0;
}

.section-title-about {
    font-family: 'Cinzel Decorative', serif;
    font-size: 48px;
    font-weight: 700;
    color: #E56D0A;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title-about::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #E56D0A);
}

.section-title-about::after {
    content: '';
    position: absolute;
    right: -300px;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: 3px;
    background: linear-gradient(90deg, #E56D0A, transparent);
}

.about-headline {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 32px;
    font-weight: 400;
    font-style: italic;
    color: #FFC300;
    line-height: 1.4;
    margin-bottom: 40px;
}

.about-description-wrapper {
    position: relative;
    padding-left: 40px;
    border-left: 3px solid #E56D0A;
}

.drop-cap {
    font-family: 'Cinzel Decorative', serif;
    font-size: 72px;
    font-weight: 900;
    color: #E56D0A;
    line-height: 1;
    float: left;
    margin-right: 15px;
    margin-top: 5px;
}

.about-description {
    font-size: 17px;
    color: #d4c5a0;
    line-height: 1.8;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 500px;
    align-self: start;
    margin-top: -10px;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 3px solid #E56D0A;
    transition: transform 0.3s ease;
    aspect-ratio: 4/3;
    height: 140px;
}

.image-card:hover {
    transform: scale(1.03);
}

.image-card:first-child {
    grid-column: 1 / -1;
    height: 140px;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

/* Vision Section */
.vision-section {
    padding: 40px 60px 60px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

/* Dark overlay for vision section */
.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at center, rgba(229, 109, 10, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 195, 0, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.28) 50%, rgba(0, 0, 0, 0.42) 100%);
    z-index: 1;
}

/* Ensure content appears above overlay */
.vision-section>* {
    position: relative;
    z-index: 2;
}

.vision-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(90deg, #E56D0A 0%, #FFC300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0px;
    position: relative;
    z-index: 2;
}

.vision-carousel-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    overflow: hidden;
}

/* Decorative curved ornaments */
.vision-ornament-left,
.vision-ornament-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    border: 3px solid #E56D0A;
    border-radius: 50px;
    opacity: 0.8;
    z-index: 3;
}

.vision-ornament-left {
    left: 50px;
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.vision-ornament-right {
    right: 50px;
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Carousel container */
.vision-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Carousel track that slides */
.vision-carousel-track {
    display: flex;
    width: 400%;
    animation: slideVisionCarousel 20s infinite;
    transition: transform 1s ease-in-out;
}

@keyframes slideVisionCarousel {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-25%);
    }

    45% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    70% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-75%);
    }

    95% {
        transform: translateX(-75%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Individual cards */
.vision-card {
    width: 25%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 150px;
}

.vision-content {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #E56D0A;
    border-radius: 20px;
    padding: 40px;
    width: 1000px;
    height: 400px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.vision-text-area {
    padding-right: 20px;
}

.vision-text-area p {
    font-size: 16px;
    color: #FFECAD;
    line-height: 1.6;
    font-family: 'Montserrat Alternates', sans-serif;
}

.vision-image-area {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid #FFC300;
    height: 280px;
}

.vision-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vision-image-area:hover img {
    transform: scale(1.05);
}

.vision-text-area {
    padding-right: 20px;
}

.vision-text-content {
    font-size: 18px;
    color: #FFECAD;
    line-height: 1.8;
    font-family: 'Montserrat Alternates', sans-serif;
}

.vision-image-area {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid #FFC300;
    height: 300px;
}

.vision-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vision-image-area:hover img {
    transform: scale(1.05);

    font-family: 'Montserrat Alternates',
        sans-serif;
}

.vision-image-area {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid #FFC300;
}

.vision-image-area img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vision-image-area:hover img {
    transform: scale(1.05);


    border: 2px solid #FFC300;
}

.vision-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vision-image:hover img {
    transform: scale(1.05);
}

.vision-ornament-left,
.vision-ornament-right {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid #FFC300;
    opacity: 0.3;
}

.vision-ornament-left {
    top: 50px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.vision-ornament-right {
    bottom: 50px;
    right: 20px;
    border-left: none;
    border-top: none;
}

/* Decorative Elements */
.corner-ornament {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid #FFC300;
    opacity: 0.2;
}

.corner-ornament.top-left {
    top: 100px;
    left: 40px;
    border-right: none;
    border-bottom: none;
}

.corner-ornament.bottom-right {
    bottom: 100px;
    right: 40px;
    border-left: none;
    border-top: none;
}

/* Games Section */
.games-section {
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.game-card {
    background: rgba(255, 195, 0, 0.05);
    border: 1px solid rgba(255, 195, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 195, 0, 0.1);
    border-color: rgba(255, 195, 0, 0.3);
}

.game-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-info {
    padding: 30px;
}

.game-title {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #FFC300;
    margin-bottom: 15px;
}

.game-description {
    font-size: 16px;
    color: #FFECAD;
    line-height: 1.6;
    margin-bottom: 20px;
}

.game-status {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(229, 109, 10, 0.2);
    color: #E56D0A;
    border: 1px solid #E56D0A;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Game Teaser Section */
.game-teaser-section {
    position: relative;
    padding: 90px 60px;
    background: linear-gradient(180deg, #1f1f1f 0%, #222222 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.game-teaser-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(229, 109, 10, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(255, 195, 0, 0.12) 0%, transparent 45%);
    pointer-events: none;
}

.game-teaser-content {
    position: relative;
    z-index: 1;
    max-width: 950px;
    width: 100%;
    padding: 48px 56px;
    border: 2px solid #E56D0A;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
}

.game-teaser-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #E56D0A 0%, #FFC300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
}

.game-teaser-subtitle {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    color: #FFECAD;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

/* Founders Section */
/* FOUNDERS SECTION */

.founders-section {
    padding: 50px 60px;
    background: #1f1f1f;
    text-align: center;
    /* background:
        radial-gradient(circle at 20% 30%, rgba(229, 109, 10, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 195, 0, 0.1), transparent 40%),
        #1f1f1f; */
}

.founders-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 48px;
    letter-spacing: 4px;
    color: #E56D0A;
    margin-bottom: 70px;
}

.founders-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.founder-card {
    width: 320px;
    padding: 40px 30px;

    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);

    border: 2px solid rgba(229, 109, 10, 0.5);
    border-radius: 20px;

    transition: all 0.35s ease;
}

.founder-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #E56D0A;
    margin-bottom: 20px;
}

.founder-name {
    font-family: 'Cinzel Decorative', serif;
    font-size: 24px;
    letter-spacing: 2px;
    color: #FFC300;
    margin-bottom: 10px;
}

.founder-quote {
    font-style: italic;
    font-size: 16px;
    color: #FFC300;
    margin-bottom: 15px;
}

.founder-desc {
    font-size: 14px;
    color: #cbbf9b;
    line-height: 1.7;
}

.founder-card:hover {
    transform: translateY(-10px);
    border-color: #FFC300;
    box-shadow: 0 20px 50px rgba(229, 109, 10, 0.4);
}

.founder-card:hover img {
    transform: scale(1.08);
    transition: 0.3s;
}

.founder-image {
    width: 180px;
    height: 180px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    border: 3px solid #E56D0A;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: 0.3s;
}

.founder-image img {
    width: 120%;
}

.founder-card:hover .founder-image {
    border-color: #FFC300;
    box-shadow: 0 0 30px rgba(255, 195, 0, 0.6);
}

/* Enter the Studio Section */
.enter-studio-section {
    padding: 80px 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('assets/ask_us_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.enter-studio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.44) 100%);
    z-index: 1;
}

.studio-card {
    position: relative;
    z-index: 2;
    max-width: 950px;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 3px solid #E56D0A;
    border-radius: 40px;
    padding: 60px 70px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.studio-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 38px;
    font-weight: 700;
    background: linear-gradient(90deg, #E56D0A 0%, #FFC300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.title-line-left,
.title-line-right {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E56D0A);
}

.title-line-right {
    background: linear-gradient(90deg, #E56D0A, transparent);
}

.studio-subtitle {
    font-size: 15px;
    color: #FFECAD;
    text-align: center;
    margin-bottom: 45px;
    line-height: 1.6;
}

.studio-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.form-row-bottom {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    align-items: center;
}

.form-group {
    position: relative;
    display: flex;
    align-items: center;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 55px 18px 22px;
    background: transparent;
    border: 2px solid #E56D0A;
    border-radius: 50px;
    color: #FFECAD;
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group textarea {
    border-radius: 50px;
    resize: none;
    padding: 18px 55px 18px 22px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 236, 173, 0.4);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    color: #E56D0A;
    font-weight: 600;
}

.form-group select option {
    background: #2a2a2a;
    color: #FFECAD;
    padding: 12px 20px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #FFC300;
    box-shadow: 0 0 15px rgba(255, 195, 0, 0.3);
}

.form-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #FFC300;
    pointer-events: none;
    z-index: 10;
}

.submit-btn {
    padding: 18px 40px;
    background: transparent;
    border: 2px solid #E56D0A;
    border-radius: 50px;
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 100%;
}

.submit-orange {
    color: #E56D0A;
}

.inquiry-text {
    color: #E56D0A;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 195, 0, 0.5);
    background: rgba(229, 109, 10, 0.1);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Success Modal Popup */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(135deg, rgba(34, 34, 34, 0.95) 0%, rgba(42, 42, 42, 0.95) 100%);
    border: 3px solid #E56D0A;
    border-radius: 30px;
    padding: 50px 60px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: slideUp 0.4s ease;
    position: relative;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-icon {
    font-size: 80px;
    color: #4CAF50;
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.modal-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(90deg, #E56D0A 0%, #FFC300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.modal-text {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 16px;
    color: #FFECAD;
    line-height: 1.8;
    margin-bottom: 30px;
}

.modal-close-btn {
    padding: 15px 40px;
    background: linear-gradient(90deg, #E56D0A 0%, #FFC300 100%);
    border: none;
    border-radius: 50px;
    color: #1a1a1a;
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 195, 0, 0.5);
}

/* Footer */
.footer {
    background: rgba(34, 34, 34, 0.8);
    border-top: 1px solid rgba(255, 195, 0, 0.1);
    padding: 60px 60px 30px;
    margin-top: 120px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 24px;
    color: #E56D0A;
    font-weight: 700;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-section h4 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 18px;
    color: #FFC300;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #FFECAD;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #E56D0A;
}

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 195, 0, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #FFECAD;
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {

    /* About Section */
    .about-section-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images-container {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .image-card:first-child {
        grid-column: 1;
    }

    /* Hero Section */
    .main-title {
        font-size: 64px;
        letter-spacing: 6px;
    }

    .welcome-text {
        font-size: 20px;
        letter-spacing: 10px;
    }

    .welcome-text::before,
    .welcome-text::after {
        width: 150px;
    }
}

@media (max-width: 768px) {

    /* Navigation */
    nav {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 13px;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding: 20px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .welcome-text {
        font-size: 14px;
        letter-spacing: 6px;
        gap: 15px;
        flex-wrap: wrap;
    }

    .welcome-text::before,
    .welcome-text::after {
        width: 80px;
        height: 2px;
    }

    .main-title {
        font-size: 38px;
        letter-spacing: 2px;
        line-height: 1.1;
        padding: 0 10px;
    }

    .subtitle-line {
        width: 250px;
        height: 3px;
        margin: 30px auto;
    }

    .tagline {
        font-size: 16px;
        letter-spacing: 1px;
        padding: 0 20px;
    }

    /* About Section */
    .about-section {
        padding: 80px 20px;
    }

    .section-title-about {
        font-size: 36px;
        letter-spacing: 3px;
        margin-bottom: 30px;
    }

    .section-title-about::before,
    .section-title-about::after {
        display: none;
    }

    .about-headline {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .about-description-wrapper {
        padding-left: 20px;
        border-left: 2px solid #E56D0A;
    }

    .drop-cap {
        font-size: 56px;
        margin-right: 10px;
    }

    .about-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-images-container {
        padding: 20px;
        margin-top: 40px;
    }

    .image-card {
        height: 180px;
    }

    .image-card:first-child {
        height: 180px;
    }

    .corner-ornament {
        display: none;
    }
}

@media (max-width: 480px) {

    /* Hero Section */
    .welcome-text {
        font-size: 10px;
        letter-spacing: 4px;
        gap: 10px;
    }

    .welcome-text::before,
    .welcome-text::after {
        width: 40px;
    }

    .main-title {
        font-size: 28px;
        letter-spacing: 1px;
        padding: 0 10px;
    }

    .subtitle-line {
        width: 180px;
        height: 2px;
        margin: 20px auto;
    }

    .tagline {
        font-size: 14px;
        padding: 0 15px;
    }

    /* About Section */
    .about-section {
        padding: 60px 15px;
    }

    .section-title-about {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .about-headline {
        font-size: 20px;
    }

    .drop-cap {
        font-size: 48px;
    }

    .about-description {
        font-size: 14px;
    }

    .about-images-container {
        padding: 15px;
    }

    .image-card {
        height: 150px;
    }

    .image-card:first-child {
        height: 150px;
    }

    /* Additional mobile adjustments */
    .welcome-text::before,
    .welcome-text::after {
        width: 80px;
    }

    .main-title {
        font-size: 56px;
        letter-spacing: 6px;
    }

    .subtitle-line {
        width: 350px;
    }

    .tagline {
        font-size: 16px;
    }

    .corner-ornament {
        display: none;
    }

    .about-section,
    .vision-section {
        padding: 80px 30px;
    }

    .section-title,
    .vision-title {
        font-size: 32px;
    }

    .about-headline {
        font-size: 24px;
    }

    .vision-card {
        padding: 40px 30px;
    }

    .section-line {
        width: 100px;
    }

    .section-header {
        gap: 20px;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .game-card {
        margin: 0 10px;
    }

    .footer {
        padding: 40px 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .welcome-text {
        font-size: 14px;
        letter-spacing: 4px;
        gap: 15px;
    }

    .welcome-text::before,
    .welcome-text::after {
        width: 50px;
    }

    .main-title {
        font-size: 40px;
        letter-spacing: 4px;
    }

    .subtitle-line {
        width: 250px;
    }

    .tagline {
        font-size: 14px;
    }

    .section-title,
    .vision-title {
        font-size: 24px;
    }

    .about-headline {
        font-size: 20px;
    }

    .drop-cap {
        font-size: 48px;
    }

    .games-section {
        padding: 80px 20px;
    }

    .game-info {
        padding: 20px;
    }

    .game-title {
        font-size: 20px;
    }
}

/* Leadership Section */
.leadership-section {
    padding: 100px 80px;
    max-width: 1600px;
    margin: 0 auto;
    background-color: #2a2a2a;
}

.leadership-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.leadership-text {
    padding-right: 40px;
}

.title-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.title-line {
    width: 50px;
    height: 3px;
    background: #E56D0A;
    flex-shrink: 0;
}

.section-title-leadership {
    font-family: 'Cinzel Decorative', serif;
    font-size: 48px;
    font-weight: 700;
    color: #E56D0A;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
}

.leadership-quote {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    color: #FFC300;
    line-height: 1.4;
    margin-bottom: 40px;
}

.leadership-description-wrapper {
    position: relative;
    padding-left: 40px;
    border-left: 3px solid #E56D0A;
}

.drop-cap {
    font-family: 'Cinzel Decorative', serif;
    font-size: 72px;
    font-weight: 900;
    color: #E56D0A;
    line-height: 1;
    float: left;
    margin-right: 15px;
    margin-top: 5px;
}

.leadership-description {
    font-size: 16px;
    color: #c4b59a;
    line-height: 1.8;
}

/* Interactive Image Area - SIMPLIFIED */
.leadership-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 750px;
    height: 450px;
    border: 3px solid #E56D0A;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Background office image */
.office-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    z-index: 1;
}

/* Person images layered on top */
.person-image {
    position: absolute !important;
    width: 80% !important;
    height: auto !important;
    object-fit: contain;
    z-index: 10;
    transition: all 0.3s ease;
    bottom: -20px !important;
    cursor: pointer;
}

.person-left {
    left: -5% !important;
    content: url('assets/bwAarya.png');
}

.person-left:hover {
    content: url('assets/aarya.png');
}

.person-right {
    right: -12% !important;
    content: url('assets/bwAtharv.png');
}

.person-right:hover {
    content: url('assets/atharv.png');
}

.person-image:hover {
    transform: scale(1.05);
    z-index: 20;
}

.leadership-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Layer 1: Background Image Container */
.background-grid {
    position: absolute;
    inset: 0;
    border-radius: 32px;
    border: 4px solid #E56D0A;
    overflow: hidden;
    z-index: 1;
    background-color: #1a1a1a;
}

.background-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Layer 2: People Images Container */
.human-images-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

/* Individual Person Container */
.human-image {
    position: absolute;
    transition: all 0.5s ease;
    pointer-events: auto;
    cursor: pointer;
}

/* Person positioning */
.human-image.person-1 {
    left: 25% !important;
    bottom: 0;
    width: 75%;
    z-index: 20;
}

.human-image.person-2 {
    right: 22% !important;
    bottom: 0;
    width: 75%;
    z-index: 30;
}

.human-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Hover effects for non-active images */
.human-image.dimmed {
    opacity: 0.4;
    filter: grayscale(100%) blur(2px);
}

.human-image:not(.dimmed) {
    opacity: 1;
    filter: none;
}

/* Z-index boost for hovered person */
.human-image.active {
    z-index: 50 !important;
}

.human-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.7s ease;
    mask-image: linear-gradient(to top, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 90%, transparent 100%);
}

.human-image:hover img {
    transform: scale(1.05);
}

/* Layer 3: Gold Badge */
.founder-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%) scale(0.8);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #E5B539;
    border: 4px solid #B8860B;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.founder-badge.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
    from {
        transform: translate(-50%, -40%) scale(0.8);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.founder-badge .badge-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 4px;
}

.founder-badge .badge-name {
    font-family: 'Cinzel Decorative', serif;
    font-size: 20px;
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    padding: 0 16px;
}

.badge-divider {
    margin-top: 8px;
    width: 32px;
    height: 2px;
    background: rgba(0, 0, 0, 0.3);
}

/* Glossy Overlay Effect */
.glossy-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%, transparent 100%);
    z-index: 40;
    pointer-events: none;
}

/* Layer 3: Badge (appears on hover) */
.founder-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: linear-gradient(135deg, #E56D0A 0%, #FFC300 100%);
    padding: 15px 35px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(229, 109, 10, 0.6);
    z-index: 3;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.founder-badge.show {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.founder-badge .badge-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.founder-badge .badge-name {
    font-family: 'Cinzel Decorative', serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .leadership-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .leadership-image-wrapper {
        max-width: 100%;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .leadership-section {
        padding: 80px 30px;
    }

    .section-title-leadership {
        font-size: 32px;
    }

    .leadership-quote {
        font-size: 22px;
    }

    .leadership-image-wrapper {
        height: 350px;
    }

    .human-image.person-1 {
        width: 200px;
        height: 250px;
        left: 30px;
    }

    .human-image.person-2 {
        width: 180px;
        height: 230px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .section-title-leadership {
        font-size: 28px;
    }

    .leadership-quote {
        font-size: 18px;
    }

    .leadership-image-wrapper {
        height: 300px;
    }

    .human-image.person-1 {
        width: 150px;
        height: 200px;
        left: 20px;
        top: 40px;
    }

    .human-image.person-2 {
        width: 140px;
        height: 190px;
        right: 15px;
        top: 60px;
    }

    .founder-badge {
        padding: 12px 25px;
    }

    .founder-badge .badge-name {
        font-size: 16px;
    }
}

/* 
========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   Mobile, Tablet, iPad & All Devices
   ======================================== */

/* Large Tablets & Small Desktops (1200px - 1024px) */
@media (max-width: 1200px) {
    nav {
        padding: 20px 40px;
    }

    .about-section {
        padding: 80px 40px;
    }

    .vision-card {
        padding: 0 80px;
    }

    .vision-content {
        width: 800px;
        height: 350px;
        padding: 30px;
        gap: 30px;
    }

    .vision-ornament-left {
        left: 20px;
    }

    .vision-ornament-right {
        right: 20px;
    }

    .studio-card {
        padding: 50px 60px;
    }
}

/* Tablets (1024px - 768px) */
@media (max-width: 1024px) {

    /* Navigation */
    nav {
        padding: 20px 30px;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-links a {
        font-size: 15px;
    }

    /* Hero Section */
    .main-title {
        font-size: 60px;
        letter-spacing: 6px;
    }

    .welcome-text {
        font-size: 22px;
        letter-spacing: 10px;
    }

    .welcome-text::before,
    .welcome-text::after {
        width: 200px;
    }

    .subtitle-line {
        width: 600px;
    }

    .tagline {
        font-size: 20px;
    }

    /* About Section */
    .about-section-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-text {
        padding-right: 0;
    }

    .about-images-container {
        max-width: 600px;
        margin: 0 auto;
    }

    .section-title-about::after {
        right: -200px;
        width: 180px;
    }

    /* Vision Section */
    .vision-section {
        padding: 60px 30px;
    }

    .vision-card {
        padding: 0 50px;
    }

    .vision-content {
        width: 700px;
        height: auto;
        min-height: 300px;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .vision-text-area {
        padding-right: 0;
    }

    .vision-image-area {
        height: 250px;
    }

    .vision-ornament-left,
    .vision-ornament-right {
        width: 150px;
        height: 150px;
    }

    /* Games Section */
    .games-section {
        padding: 100px 40px;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    /* Enter Studio Section */
    .enter-studio-section {
        padding: 60px 30px;
    }

    .studio-card {
        padding: 50px 50px;
    }

    .studio-title {
        font-size: 32px;
    }

    .form-row-top {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-row-bottom {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Footer */
    .footer {
        padding: 50px 40px 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Mobile Landscape & Small Tablets (768px - 600px) */
@media (max-width: 768px) {

    /* Navigation */
    nav {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
        background: rgba(34, 34, 34, 0.95);
    }

    .logo {
        width: 45px;
        height: 45px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 14px;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding: 20px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .welcome-text {
        font-size: 16px;
        letter-spacing: 6px;
        gap: 15px;
        flex-direction: column;
    }

    .welcome-text::before,
    .welcome-text::after {
        width: 120px;
        height: 2px;
    }

    .main-title {
        font-size: 42px;
        letter-spacing: 3px;
        line-height: 1.2;
    }

    .subtitle-line {
        width: 300px;
        height: 3px;
        margin: 25px auto;
    }

    .tagline {
        font-size: 16px;
        letter-spacing: 1px;
        padding: 0 15px;
    }

    /* About Section */
    .about-section {
        padding: 60px 20px;
    }

    .section-title-about {
        font-size: 32px;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }

    .section-title-about::before,
    .section-title-about::after {
        display: none;
    }

    .about-headline {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .about-description-wrapper {
        padding-left: 20px;
        border-left: 2px solid #E56D0A;
    }

    .drop-cap {
        font-size: 52px;
        margin-right: 10px;
    }

    .about-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-images-container {
        padding: 20px;
        max-width: 100%;
    }

    .about-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .image-card {
        height: 200px;
    }

    .image-card:first-child {
        height: 200px;
    }

    /* Vision Section */
    .vision-section {
        padding: 50px 20px;
    }

    .vision-title {
        font-size: 32px;
        letter-spacing: 3px;
        margin-bottom: 30px;
    }

    .vision-carousel-wrapper {
        min-height: 400px;
    }

    .vision-card {
        padding: 0 20px;
    }

    .vision-content {
        width: 100%;
        max-width: 500px;
        padding: 25px;
        gap: 20px;
    }

    .vision-text-area p {
        font-size: 14px;
        line-height: 1.6;
    }

    .vision-image-area {
        height: 200px;
    }

    .vision-ornament-left,
    .vision-ornament-right {
        display: none;
    }

    /* Games Section */
    .games-section {
        padding: 60px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-line {
        width: 60px;
        height: 2px;
    }

    .section-title {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .games-grid {
        gap: 30px;
        margin-top: 40px;
    }

    .game-image {
        height: 200px;
    }

    .game-info {
        padding: 25px;
    }

    .game-title {
        font-size: 22px;
    }

    .game-description {
        font-size: 15px;
    }

    /* Enter Studio Section */
    .game-teaser-section {
        padding: 70px 20px;
    }

    .game-teaser-content {
        padding: 35px 28px;
        border-radius: 20px;
    }

    .game-teaser-title {
        font-size: 30px;
        letter-spacing: 1.5px;
    }

    .game-teaser-subtitle {
        font-size: 15px;
        line-height: 1.7;
    }

    .enter-studio-section {
        padding: 50px 20px;
        min-height: auto;
    }

    .studio-card {
        padding: 40px 30px;
        border-radius: 30px;
    }

    .studio-title {
        font-size: 26px;
        letter-spacing: 2px;
        gap: 15px;
        flex-direction: column;
    }

    .title-line-left,
    .title-line-right {
        width: 100px;
    }

    .studio-subtitle {
        font-size: 14px;
        margin-bottom: 35px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 50px 16px 20px;
        font-size: 13px;
    }

    .form-icon {
        font-size: 18px;
        right: 18px;
    }

    .submit-btn {
        padding: 16px 30px;
        font-size: 14px;
    }

    /* Modal */
    .modal-content {
        padding: 40px 30px;
        max-width: 90%;
        border-radius: 25px;
    }

    .modal-icon {
        font-size: 60px;
    }

    .modal-title {
        font-size: 26px;
    }

    .modal-text {
        font-size: 14px;
    }

    .modal-close-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 40px 20px 20px;
        margin-top: 80px;
    }

    .footer-content {
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        flex-direction: column;
        gap: 15px;
    }

    .footer-logo h3 {
        font-size: 20px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-section ul li a {
        font-size: 14px;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    /* Corner Ornaments */
    .corner-ornament {
        display: none;
    }
}

/* Mobile Portrait (600px - 480px) */
@media (max-width: 600px) {

    /* Hero Section */
    .welcome-text {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .welcome-text::before,
    .welcome-text::after {
        width: 80px;
    }

    .main-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .subtitle-line {
        width: 250px;
        margin: 20px auto;
    }

    .tagline {
        font-size: 14px;
    }

    /* About Section */
    .section-title-about {
        font-size: 28px;
    }

    .about-headline {
        font-size: 20px;
    }

    .drop-cap {
        font-size: 48px;
    }

    .about-description {
        font-size: 14px;
    }

    .image-card {
        height: 180px;
    }

    .image-card:first-child {
        height: 180px;
    }

    /* Vision Section */
    .vision-title {
        font-size: 28px;
    }

    .vision-content {
        padding: 20px;
    }

    .vision-text-area p {
        font-size: 13px;
    }

    .vision-image-area {
        height: 180px;
    }

    /* Games Section */
    .section-title {
        font-size: 28px;
    }

    .game-title {
        font-size: 20px;
    }

    /* Enter Studio Section */
    .studio-card {
        padding: 35px 25px;
    }

    .studio-title {
        font-size: 22px;
    }

    .title-line-left,
    .title-line-right {
        width: 60px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {

    /* Navigation */
    nav {
        padding: 12px 15px;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 12px;
    }

    /* Hero Section */
    .hero {
        padding: 15px;
    }

    .welcome-text {
        font-size: 10px;
        letter-spacing: 3px;
        gap: 10px;
    }

    .welcome-text::before,
    .welcome-text::after {
        width: 50px;
        height: 1px;
    }

    .main-title {
        font-size: 30px;
        letter-spacing: 1px;
        padding: 0 5px;
    }

    .subtitle-line {
        width: 200px;
        height: 2px;
        margin: 15px auto;
    }

    .tagline {
        font-size: 13px;
        padding: 0 10px;
    }

    /* About Section */
    .about-section {
        padding: 50px 15px;
    }

    .section-title-about {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .about-headline {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .about-description-wrapper {
        padding-left: 15px;
    }

    .drop-cap {
        font-size: 42px;
        margin-right: 8px;
    }

    .about-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .about-images-container {
        padding: 15px;
    }

    .image-card {
        height: 160px;
        border: 2px solid #E56D0A;
    }

    .image-card:first-child {
        height: 160px;
    }

    /* Vision Section */
    .vision-section {
        padding: 40px 15px;
    }

    .vision-title {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .vision-carousel-wrapper {
        min-height: 350px;
    }

    .vision-card {
        padding: 0 15px;
    }

    .vision-content {
        padding: 18px;
        border-radius: 15px;
    }

    .vision-text-area p {
        font-size: 12px;
        line-height: 1.5;
    }

    .vision-image-area {
        height: 160px;
        border-radius: 10px;
    }

    /* Games Section */
    .games-section {
        padding: 50px 15px;
    }

    .section-line {
        width: 40px;
    }

    .section-title {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .games-grid {
        gap: 25px;
        margin-top: 30px;
    }

    .game-image {
        height: 180px;
    }

    .game-info {
        padding: 20px;
    }

    .game-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .game-description {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .game-status {
        padding: 6px 12px;
        font-size: 11px;
    }

    /* Enter Studio Section */
    .game-teaser-section {
        padding: 50px 15px;
    }

    .game-teaser-content {
        padding: 28px 18px;
        border-width: 1px;
        border-radius: 16px;
    }

    .game-teaser-title {
        font-size: 22px;
        line-height: 1.4;
        letter-spacing: 1px;
    }

    .game-teaser-subtitle {
        font-size: 13px;
        line-height: 1.6;
    }

    .enter-studio-section {
        padding: 40px 15px;
    }

    .studio-card {
        padding: 30px 20px;
        border-radius: 25px;
        border: 2px solid #E56D0A;
    }

    .studio-title {
        font-size: 20px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .title-line-left,
    .title-line-right {
        width: 40px;
        height: 1px;
    }

    .studio-subtitle {
        font-size: 13px;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 45px 14px 18px;
        font-size: 12px;
        border-radius: 40px;
    }

    .form-group textarea {
        border-radius: 20px;
    }

    .form-icon {
        font-size: 16px;
        right: 16px;
    }

    .submit-btn {
        padding: 14px 25px;
        font-size: 13px;
        border-radius: 40px;
    }

    .form-message {
        font-size: 12px;
        padding: 12px;
    }

    /* Modal */
    .modal-content {
        padding: 35px 25px;
        border-radius: 20px;
        border: 2px solid #E56D0A;
    }

    .modal-icon {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .modal-title {
        font-size: 22px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .modal-text {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .modal-close-btn {
        padding: 12px 25px;
        font-size: 13px;
        border-radius: 40px;
    }

    /* Footer */
    .footer {
        padding: 35px 15px 18px;
        margin-top: 60px;
    }

    .footer-logo {
        gap: 12px;
    }

    .footer-logo .logo {
        width: 35px;
        height: 35px;
    }

    .footer-logo h3 {
        font-size: 18px;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-section h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .footer-section ul li {
        margin-bottom: 10px;
    }

    .footer-section ul li a {
        font-size: 13px;
    }

    .footer-bottom {
        margin-top: 25px;
        padding-top: 18px;
    }

    .footer-bottom p {
        font-size: 11px;
    }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
    .main-title {
        font-size: 26px;
    }

    .welcome-text {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 12px;
    }

    .section-title-about,
    .section-title,
    .vision-title {
        font-size: 22px;
    }

    .about-headline {
        font-size: 16px;
    }

    .studio-title {
        font-size: 18px;
    }
}

/* Landscape Orientation Fixes */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 40px 20px;
    }

    .hero-content {
        padding: 20px;
    }

    .main-title {
        font-size: 36px;
    }

    .welcome-text {
        font-size: 14px;
    }

    .tagline {
        font-size: 14px;
    }

    .enter-studio-section {
        min-height: auto;
        padding: 50px 20px;
    }
}

/* iPad Specific (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .vision-content {
        width: 650px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* iPad Pro (1024px - 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) {
    .vision-content {
        width: 900px;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #E56D0A;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(34, 34, 34, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        gap: 25px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 2px solid #E56D0A;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        text-align: center;
        opacity: 0;
        transform: translateY(-20px);
        animation: slideInNav 0.3s ease forwards;
    }

    .nav-links.active li:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        animation-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        animation-delay: 0.3s;
    }

    @keyframes slideInNav {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links a {
        font-size: 18px;
        padding: 10px 20px;
        display: block;
    }
}

@media (max-width: 480px) {
    .mobile-menu-toggle span {
        width: 24px;
        height: 2px;
    }

    .nav-links {
        top: 70px;
        padding: 25px 15px;
        gap: 20px;
    }

    .nav-links a {
        font-size: 16px;
    }
}