/* ========================================
   Bold Booth - Wedding Edition Styles
   ======================================== */

/* CSS Variables */
:root {
    --color-primary: #ff6b9d;
    --color-secondary: #ffc6d9;
    --color-accent: #d4af37;
    --color-text-dark: #2c3e50;
    --color-text-light: #7f8c8d;
    --color-bg-light: #fff9f9;
    --color-bg-white: #ffffff;
    --color-border: #ffe4e4;
    --color-success: #52c41a;
    --color-team-1: #ff6b9d;
    --color-team-2: #4a90e2;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-speed: 0.3s;
    --border-radius: 12px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    font-weight: 700;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all var(--transition-speed);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.logo-icon {
    font-size: 2em;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5em;
    font-weight: 700;
    color: var(--color-primary);
}

.logo-subtitle {
    font-size: 0.9em;
    color: var(--color-text-light);
    font-weight: 400;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
    transition: all var(--transition-speed);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 500;
    transition: color var(--transition-speed);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-speed);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.cta-button {
    background: linear-gradient(135deg, var(--color-primary), #ff8fab);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
}

.nav-link.cta-button::after {
    display: none;
}

.nav-link.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #fff9f9 0%, #ffe4e4 50%, #ffc6d9 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-icon {
    font-size: 5em;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-title {
    font-size: 4em;
    margin: 20px 0 10px;
    color: var(--color-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-subtitle {
    font-size: 1.8em;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.3em;
    color: var(--color-text-dark);
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn {
    padding: 15px 40px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all var(--transition-speed);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #ff8fab);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.2em;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--color-text-dark);
}

.feature-icon {
    font-size: 1.5em;
}

/* Section Styles */
.section {
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3em;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.2em;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.section-overview {
    background: var(--color-bg-white);
}

.section-games {
    background: var(--color-bg-light);
}

.section-team {
    background: linear-gradient(135deg, #fff9f9 0%, #f0f0ff 100%);
}

.section-features {
    background: var(--color-bg-white);
}

.section-pricing {
    background: linear-gradient(135deg, #fff9f9 0%, #fff0f3 100%);
}

.section-flow {
    background: var(--color-bg-light);
}

.section-cta {
    background: linear-gradient(135deg, var(--color-primary), #ff8fab);
    color: white;
}

/* Overview Grid */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.overview-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed);
    text-align: center;
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.overview-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.overview-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.overview-description {
    color: var(--color-text-light);
    margin-bottom: 20px;
    font-size: 1.05em;
}

.overview-features {
    list-style: none;
    text-align: left;
}

.overview-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-dark);
}

.overview-features li:last-child {
    border-bottom: none;
}

.overview-features li::before {
    content: '✓ ';
    color: var(--color-success);
    font-weight: bold;
    margin-right: 8px;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.game-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.game-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.game-icon {
    font-size: 3em;
}

.game-title {
    font-size: 1.8em;
    color: var(--color-primary);
    flex: 1;
}

.game-badge {
    background: linear-gradient(135deg, var(--color-primary), #ff8fab);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}

.game-description {
    color: var(--color-text-dark);
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.6;
}

.game-details {
    border-top: 2px solid var(--color-border);
    padding-top: 20px;
}

.game-details h4 {
    color: var(--color-text-dark);
    margin: 20px 0 10px;
    font-size: 1.1em;
    font-family: var(--font-body);
    font-weight: 600;
}

.game-details ul {
    list-style: none;
    padding-left: 0;
}

.game-details ul li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--color-text-dark);
}

.game-details ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.game-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.game-categories span {
    background: var(--color-bg-light);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9em;
    color: var(--color-text-dark);
    border: 1px solid var(--color-border);
}

.game-categories span.special {
    background: linear-gradient(135deg, var(--color-accent), #e6c757);
    color: white;
    border: none;
    font-weight: 600;
}

/* Team Competition Section */
.team-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.team-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-box {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    min-width: 250px;
    transition: all var(--transition-speed);
}

.team-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.team-1 {
    border-top: 5px solid var(--color-team-1);
}

.team-2 {
    border-top: 5px solid var(--color-team-2);
}

.team-icon {
    font-size: 4em;
    margin-bottom: 15px;
}

.team-box h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}

.team-score {
    font-size: 3em;
    font-weight: 700;
    font-family: var(--font-heading);
}

.team-1 .team-score {
    color: var(--color-team-1);
}

.team-2 .team-score {
    color: var(--color-team-2);
}

.vs-badge {
    background: linear-gradient(135deg, var(--color-primary), #ff8fab);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: 700;
    box-shadow: var(--box-shadow);
}

.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-feature {
    text-align: center;
}

.team-feature .feature-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.team-feature h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.team-feature p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Features Tabs */
.features-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 2px solid var(--color-border);
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1em;
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    transition: all var(--transition-speed);
    font-family: var(--font-body);
}

.tab-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--color-primary), #ff8fab);
    color: white;
    border-color: var(--color-primary);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.feature-item .feature-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.feature-item ul {
    list-style: none;
}

.feature-item ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--color-text-dark);
}

.feature-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
}

.projector-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.projector-feature {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.projector-feature h4 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.projector-feature ul {
    list-style: none;
}

.projector-feature ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--color-text-dark);
}

.projector-feature ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* Pricing Section */
.section-pricing {
    position: relative;
    overflow: hidden;
}

.pricing-hero {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-investment {
    background: white;
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--box-shadow-hover);
    max-width: 600px;
    margin: 0 auto;
    border-top: 5px solid var(--color-accent);
}

.investment-label {
    font-size: 1.2em;
    color: var(--color-text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.investment-amount {
    font-family: var(--font-heading);
    font-size: 5em;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-primary), #ff8fab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.investment-tagline {
    font-size: 1.2em;
    color: var(--color-text-dark);
    font-style: italic;
}

.pricing-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.pricing-intro p {
    font-size: 1.2em;
    line-height: 1.8;
    color: var(--color-text-dark);
}

.pricing-features {
    max-width: 1100px;
    margin: 0 auto 60px;
}

.features-title {
    text-align: center;
    font-size: 2.5em;
    color: var(--color-primary);
    margin-bottom: 50px;
}

.pricing-feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 25px;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed);
    border-left: 5px solid var(--color-primary);
}

.pricing-feature-card:hover {
    transform: translateX(10px);
    box-shadow: var(--box-shadow-hover);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.feature-icon-large {
    font-size: 3.5em;
    flex-shrink: 0;
}

.feature-header h4 {
    font-size: 1.8em;
    color: var(--color-primary);
    margin: 0;
}

.pricing-feature-card p {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--color-text-dark);
    margin: 0;
}

.pricing-feature-card strong {
    color: var(--color-primary);
    font-weight: 700;
}

.bold-advantage {
    background: linear-gradient(135deg, var(--color-primary), #ff8fab);
    color: white;
    border-radius: var(--border-radius);
    padding: 60px;
    margin: 60px auto;
    max-width: 1100px;
    box-shadow: var(--box-shadow-hover);
}

.advantage-content h3 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
}

.advantage-question {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.advantage-question h4 {
    font-size: 2em;
    margin: 0;
    text-align: center;
}

.advantage-content p {
    font-size: 1.3em;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

.advantage-highlight {
    font-size: 1.5em !important;
    font-weight: 700;
    margin-top: 30px;
}

.advantage-content strong {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-cta {
    text-align: center;
    margin-top: 60px;
}

.pricing-cta .btn {
    margin-bottom: 20px;
}

.pricing-note {
    color: var(--color-text-light);
    font-size: 0.95em;
    font-style: italic;
}

/* Kiosk Flow */
.flow-timeline {
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
}

.flow-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
}

.flow-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.flow-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), #ff8fab);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    position: relative;
    z-index: 1;
}

.flow-content {
    background: white;
    padding: 20px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    flex: 1;
}

.flow-content h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.flow-content p {
    color: var(--color-text-dark);
    line-height: 1.6;
}

.flow-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.flow-feature-item {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 15px;
}

.flow-icon {
    font-size: 2em;
}

.flow-feature-item p {
    color: var(--color-text-dark);
    margin: 0;
}

/* CTA Section */
.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: white;
}

.cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1em;
}

.check-icon {
    width: 25px;
    height: 25px;
    background: white;
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Footer */
.footer {
    background: var(--color-text-dark);
    color: white;
    padding: 60px 20px 30px;
}

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

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-logo .logo-text {
    color: white;
    font-size: 1.8em;
}

.footer-tagline {
    color: var(--color-secondary);
    font-size: 1.1em;
    margin-bottom: 15px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-column h4 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-column ul li a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5em;
    text-decoration: none;
    transition: all var(--transition-speed);
}

.footer-social a:hover {
    color: var(--color-secondary);
    transform: translateY(-3px);
}

/* Animations */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-zoom-in {
    animation: zoomIn 0.6s ease-out;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3em;
    }
    
    .section-title {
        font-size: 2.5em;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5em;
    }
    
    .hero-subtitle {
        font-size: 1.5em;
    }
    
    .hero-description {
        font-size: 1.1em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .team-visual {
        gap: 20px;
    }
    
    .vs-badge {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2em;
    }
    
    .investment-amount {
        font-size: 3.5em;
    }
    
    .pricing-investment {
        padding: 30px;
    }
    
    .bold-advantage {
        padding: 40px 30px;
    }
    
    .advantage-content h3 {
        font-size: 2em;
    }
    
    .advantage-question h4 {
        font-size: 1.5em;
    }
    
    .advantage-content p {
        font-size: 1.1em;
    }
    
    .pricing-feature-card {
        padding: 25px;
    }
    
    .feature-header {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon-large {
        font-size: 3em;
    }
}

@media (max-width: 480px) {
    .hero-icon {
        font-size: 3em;
    }
    
    .hero-title {
        font-size: 2em;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .overview-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .investment-amount {
        font-size: 2.5em;
    }
    
    .pricing-investment {
        padding: 25px;
    }
    
    .bold-advantage {
        padding: 30px 20px;
    }
    
    .advantage-content h3 {
        font-size: 1.8em;
    }
    
    .advantage-content p {
        font-size: 1em;
    }
    
    .pricing-feature-card {
        padding: 20px;
    }
    
    .feature-header h4 {
        font-size: 1.4em;
    }
}