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

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: #8B5CF6;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav a:hover, .nav a.active {
    color: #EDE9FE;
    transform: translateY(-2px);
}

.dropdown i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover i {
    transform: rotate(180deg);
}

/* Remove underline for all header links */
.header a { text-decoration: none; }

/* Ensure hover doesn't add underline */
.header a:hover { text-decoration: none; }

/* Breadcrumb */
.breadcrumb {
    background: #f8fafc;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb span {
    color: #6b7280;
    font-size: 14px;
}

/* Main Content Styles */
.main {
    min-height: calc(100vh - 80px);
}

/* Hero Section Styles */
.hero-section {
    padding: 60px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* About Hero Section */
.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #e0e7ff);
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
    max-width: 900px;
    margin: 0 auto 40px;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 50px;
    line-height: 1.2;
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
}

/* Left Section Styles */
.left-section {
    text-align: center;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 40px;
    line-height: 1.2;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(139, 92, 246, 0.1);
}

.download-btn {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

.download-btn i {
    font-size: 20px;
}

/* Right Section Styles */
.right-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-container {
    position: relative;
    z-index: 2;
}

.phone {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #4C1D95, #581C87);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: rotate(5deg);
    transition: transform 0.3s ease;
}

.phone:hover {
    transform: rotate(0deg) scale(1.02);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #1E1B4B;
    border-radius: 20px;
    padding: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Phone Header */
.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.phone-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.phone-logo i {
    color: #F5EF43;
    font-size: 16px;
}

.phone-timer {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #E5E7EB;
}

.phone-timer i {
    color: #F5EF43;
}

/* Bingo Board */
.bingo-board {
    margin-bottom: 20px;
}

.bingo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    margin-bottom: 20px;
}

.bingo-cell {
    aspect-ratio: 1;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #E5E7EB;
    transition: all 0.3s ease;
}

.bingo-cell.free {
    background: linear-gradient(135deg, #F5EF43, #F5EF43);
    color: #1F2937;
}

.bingo-cell:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

/* Player Scores */
.player-scores {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.player {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.player-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
}

.player-avatar.blue { background: #3B82F6; }
.player-avatar.red { background: #EF4444; }
.player-avatar.yellow { background: #F5EF43; }
.player-avatar.green { background: #10B981; }

.player-name {
    color: #E5E7EB;
    font-weight: 500;
}

.player-score {
    color: #F5EF43;
    font-weight: 600;
    margin-left: auto;
}

/* Dice */
.dice {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dice-face {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 4px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.5);
    animation: diceGlow 2s ease-in-out infinite alternate;
}

@keyframes diceGlow {
    0% { box-shadow: 0 4px 15px rgba(139, 92, 246, 0.5); }
    100% { box-shadow: 0 4px 25px rgba(139, 92, 246, 0.8); }
}

.dice-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    justify-self: center;
    align-self: center;
}

.dice-dot:nth-child(1) { grid-column: 1; grid-row: 1; }
.dice-dot:nth-child(2) { grid-column: 3; grid-row: 1; }
.dice-dot:nth-child(3) { grid-column: 1; grid-row: 2; }
.dice-dot:nth-child(4) { grid-column: 3; grid-row: 2; }
.dice-dot:nth-child(5) { grid-column: 1; grid-row: 3; }
.dice-dot:nth-child(6) { grid-column: 3; grid-row: 3; }

/* Decorative Elements */
.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bingo-token {
    position: absolute;
    font-size: 40px;
    animation: tokenFloat 3s ease-in-out infinite;
}

.bingo-token.blue-token {
    top: 10%;
    left: 10%;
    color: #3B82F6;
    animation-delay: 0s;
}

.bingo-token.red-token {
    bottom: 15%;
    right: 15%;
    color: #EF4444;
    animation-delay: 1.5s;
}

@keyframes tokenFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.zigzag {
    position: absolute;
    width: 60px;
    height: 20px;
    background: linear-gradient(45deg, transparent 30%, #10B981 30%, #10B981 40%, transparent 40%, transparent 60%, #10B981 60%, #10B981 70%, transparent 70%);
    top: 20%;
    left: 5%;
    animation: zigzagMove 4s ease-in-out infinite;
}

@keyframes zigzagMove {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(10px); }
}

.star {
    position: absolute;
    font-size: 24px;
    animation: starTwinkle 2s ease-in-out infinite;
}

.yellow-star {
    top: 25%;
    left: 8%;
    color: #F5EF43;
    animation-delay: 1s;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.wave {
    position: absolute;
    width: 120px;
    height: 40px;
    background: linear-gradient(45deg, transparent 30%, rgba(16, 185, 129, 0.3) 30%, rgba(16, 185, 129, 0.3) 70%, transparent 70%);
    top: 50%;
    right: -20px;
    border-radius: 50%;
    animation: waveFlow 5s ease-in-out infinite;
}

@keyframes waveFlow {
    0%, 100% { transform: translateX(0px) scaleY(1); }
    50% { transform: translateX(-10px) scaleY(1.2); }
}

.squiggle {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, transparent 40%, #EC4899 40%, #EC4899 60%, transparent 60%);
    top: 45%;
    right: 10px;
    border-radius: 50%;
    animation: squiggleWiggle 3s ease-in-out infinite;
}

@keyframes squiggleWiggle {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

/* Introduction Section */
.intro-section {
    padding: 60px 0;
    background: #f8fafc;
}

.intro-text {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B5CF6;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
}

.games-intro {
    font-size: 18px;
    font-weight: 600;
    color: #8B5CF6;
    text-align: center;
    margin-bottom: 50px;
}

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

.game-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.game-card:hover {
    border-color: #8B5CF6;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
}

.game-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 20px;
    text-align: center;
}

.game-description {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    text-align: center;
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #e0e7ff);
}

.coming-soon-text {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: #f8fafc;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 25px 30px;
    background: #f8fafc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #374151;
    font-size: 16px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e0e7ff;
    color: #8B5CF6;
}

.faq-question i {
    color: #8B5CF6;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #6b7280;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
}

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

.team-member {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.team-member:hover {
    border-color: #8B5CF6;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
}

.member-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 10px;
}

.member-role {
    font-size: 1.1rem;
    color: #374151;
    font-weight: 600;
    margin-bottom: 20px;
}

.member-description {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #f8fafc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.value-item:hover {
    border-color: #8B5CF6;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 15px;
}

.value-description {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
}

/* Responsible Gaming Section */
.responsible-gaming-section {
    padding: 80px 0;
    background: white;
}

.rg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.rg-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.rg-card:hover {
    border-color: #8B5CF6;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
}

.rg-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 20px;
    text-align: center;
}

.rg-list {
    list-style: none;
}

.rg-list li {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    padding-left: 20px;
    position: relative;
}

.rg-list li::before {
    content: '•';
    color: #8B5CF6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Milestones Section */
.milestones-section {
    padding: 80px 0;
    background: #f8fafc;
}

.timeline {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 55%;
    text-align: left;
}

.timeline-date {
    font-size: 1.1rem;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 10px;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 10px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 0;
    height: 0;
    border-right: 10px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transform: translateY(-50%);
}

/* Investors Section */
.investors-section {
    padding: 80px 0;
    background: white;
}

.investors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.investor {
    background: #f8fafc;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #8B5CF6;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.investor:hover {
    border-color: #8B5CF6;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #4C1D95, #581C87);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

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

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

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

.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-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
}

.footer-logo .logo-text {
    font-size: 18px;
    color: white;
}

.copyright {
    color: #e5e7eb;
    font-size: 14px;
}

/* Footer social icons */
.footer-social {
    display: flex;
    gap: 14px;
    align-items: center;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255,255,255,0.12);
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: #8B5CF6;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .main-title, .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .phone {
        width: 240px;
        height: 480px;
        transform: rotate(0deg);
    }
    
    .nav ul {
        gap: 20px;
    }
    
    .nav a {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .games-grid, .team-grid, .values-grid, .rg-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 50px;
    }
    
    .timeline-item .timeline-content::after {
        display: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-title, .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .phone {
        width: 200px;
        height: 400px;
    }
    
    .bingo-cell {
        font-size: 10px;
    }
    
    .player-scores {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.5rem;
    }

    .intro-text, .section-description, .coming-soon-text {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .team-member, .value-item, .rg-card {
        padding: 30px 20px;
    }

    /* Store Buttons */
    .store-buttons {
        flex-direction: column;
        align-items: center;
    }
    .store-btn { width: 220px; justify-content: start; }
}

/* Contact Page */
.contact-hero {
    padding: 60px 0 20px;
    background: white;
}

.contact-section {
    padding: 20px 0 60px;
    background: white;
}

.contact-email {
    padding: 40px 0;
    background: #f8fafc;
}

.contact-address {
    padding: 40px 0 80px;
    background: white;
}

.section-description.small {
    font-size: 16px;
    max-width: 900px;
    margin: 0 auto 30px;
}

.contact-form {
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.contact-form .form-row input,
.contact-form .form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
    background: #f8fafc;
}

.contact-form .form-row input:focus,
.contact-form .form-row textarea:focus {
    border-color: #8B5CF6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
    background: #ffffff;
}

.form-actions {
    text-align: left;
}

.contact-submit {
    padding: 14px 28px;
    border-radius: 999px;
}

.link {
    color: #8B5CF6;
    text-decoration: none;
    font-weight: 600;
}

.link:hover {
    color: #6D28D9;
}

.address-box {
    max-width: 900px;
    margin: 0 auto;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px 24px;
    color: #374151;
    line-height: 1.7;
}

/* Store Buttons */
.store-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
    border-radius: 12px;
    text-decoration: none;
    min-width: unset;
    box-shadow: none;
    transition: transform 0.2s ease;
}

.store-btn img {
    height: 48px;
    width: auto;
    display: block;
}

.store-btn:hover { transform: translateY(-2px); }

@media (max-width: 480px) {
    .store-buttons { flex-direction: column; align-items: center; }
    .store-btn img { height: 54px; }
}

/* Responsive enhancements */
@media (max-width: 1024px) {
    .container { padding: 0 16px; }
    .content-wrapper { gap: 40px; }
    .header .container { flex-wrap: wrap; row-gap: 10px; }
    .nav ul { flex-wrap: wrap; gap: 18px; }
}

@media (max-width: 768px) {
    .hero-section { padding: 40px 0; }
    .main-title { font-size: 2.2rem; }
    .phone { width: 240px; height: 480px; transform: rotate(0deg); }
    .bingo-grid { gap: 3px; }
    .player-scores { grid-template-columns: 1fr; }
    .decorative-elements { display: none; }
    .footer-content { gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .store-buttons { gap: 12px; }
    .breadcrumb { padding: 10px 0; }
}

@media (max-width: 560px) {
    .nav ul { gap: 12px; }
    .nav a { font-size: 14px; }
    .logo-text { font-size: 20px; }
    .phone { width: 210px; height: 420px; }
    .bingo-cell { font-size: 10px; }
    .store-btn img { height: 46px; }
    .section-title { font-size: 1.6rem; }
    .section-description, .intro-text, .coming-soon-text { font-size: 15px; }
    .timeline::before { left: 20px; }
    .timeline-item { width: 100%; left: 0 !important; text-align: left !important; padding-left: 50px; }
    .timeline-item .timeline-content::after { display: none; }
}

/* Ensure images and iframes scale and no horizontal scroll */
img, video { max-width: 100%; height: auto; }
section { overflow-x: hidden; }

/* Mobile drawer menu */
.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
}
.hamburger i { font-size: 18px; }

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: #fff;
    z-index: 1001;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: right 0.25s ease;
}
.mobile-drawer.open { right: 0; }

.mobile-drawer .drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.mobile-drawer .drawer-title { font-weight: 700; letter-spacing: .5px; }
.mobile-drawer .close-btn { background: transparent; border: 1px solid rgba(255,255,255,0.25); color: #fff; width: 36px; height: 36px; border-radius: 8px; display:flex; align-items:center; justify-content:center; cursor:pointer; }

.mobile-drawer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.mobile-drawer a { color: #fff; text-decoration: none; font-weight: 600; }
.mobile-drawer a:active { opacity: .85; }

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

body.no-scroll { overflow: hidden; }

@media (max-width: 768px) {
    .nav { display: none; }
    .hamburger { display: inline-flex; }
}

/* Home page BINGO header cell colors */
.hero-section .bingo-grid .bingo-cell:nth-child(1) { background: #EF4444; color: #FFFFFF; }
.hero-section .bingo-grid .bingo-cell:nth-child(2) { background: #F5EF43; color: #FFFFFF; }
.hero-section .bingo-grid .bingo-cell:nth-child(3) { background: #10B981; color: #FFFFFF; }
.hero-section .bingo-grid .bingo-cell:nth-child(4) { background: #3B82F6; color: #FFFFFF; }
.hero-section .bingo-grid .bingo-cell:nth-child(5) { background: #8B5CF6; color: #FFFFFF; }

/* Disable click on BINGO header cells */
.hero-section .bingo-grid .bingo-cell:nth-child(-n+5) { pointer-events: none; }

/* Header logo image */
.logo-img { height: 32px; width: auto; display: inline-block; vertical-align: middle; }
@media (max-width: 768px){ .logo-img { height: 28px; } }

/* Hero character image */
.hero-section { position: relative; }
.hero-character {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-height: 520px;
    width: auto;
    pointer-events: none;
}
@media (max-width: 1200px){ .hero-character { max-height: 420px; } }
@media (max-width: 992px){ .hero-character { display: none; } }

/* Bingo ball size tweak */
.dice-image { height: 56px; width: auto; }
@media (max-width: 560px){ .dice-image { height: 46px;} }

/* Force horizontal centering of the ball image */
.dice-image { display: block; margin-left: auto; margin-right: auto; align-self: center; justify-self: center; }

/* Site-wide title/big-text font: SignPainter */
@font-face{
  font-family: "SignPainter";
  src: url("fonts/SignPainter-HouseSlant-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Apply to headings and prominent titles */
h1, h2, h3, h4,
.hero-title, .section-title, .about-title, .contact-title,
.page-title, .faq-title, .games-title, .coming-title,
.main-title, .big-title, .headline, .cta-title, .logo-text {
    letter-spacing: 3.5px;
    font-family: "SignPainter", "Better Faster", Inter, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Title and big-text letter spacing */
/* h1, h2, h3, h4,
.hero-title, .section-title, .about-title, .contact-title,
.page-title, .faq-title, .games-title, .coming-title,
.main-title, .big-title, .headline, .cta-title {
  letter-spacing: 0.6px;
}
@media (max-width: 560px){  
  h1, h2, h3, h4,
  .hero-title, .section-title, .about-title, .contact-title,
  .page-title, .faq-title, .games-title, .coming-title,
  .main-title, .big-title, .headline, .cta-title {
    letter-spacing: 0.4px;
  }
} */
