* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #FFFFFF;
    overflow-x: hidden;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.15);
    z-index: 1000;
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #D4AF37;
    text-decoration: none;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
    z-index: 1001;
}

.logo:hover {
    opacity: 0.8;
}

.logo i {
    font-size: 1.8rem;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
    flex-shrink: 0;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #D4AF37;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-items {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: block;
    white-space: nowrap;
}

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

.nav-link:hover {
    color: #D4AF37;
}

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

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8E7 50%, #FFFFFF 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, #D4AF37 10px, #D4AF37 20px);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.demo-banner {
    background: linear-gradient(135deg, #D4AF37 0%, #C9A031 100%);
    color: #FFFFFF;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-heading {
    font-size: 4.5rem;
    font-weight: 900;
    color: #D4AF37;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.2);
    animation: fadeInUp 1s ease-out;
}

.hero-subheading {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
}

.feature-card i {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
}

.hero-warning {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #D4AF37;
    border-radius: 15px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-warning i {
    font-size: 1.5rem;
    color: #D4AF37;
    flex-shrink: 0;
}

.hero-warning p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: #FFFFFF;
    background: linear-gradient(135deg, #D4AF37 0%, #C9A031 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #E5C047 0%, #D4AF37 100%);
}

.content-section {
    padding: 5rem 0;
    position: relative;
}

.content-section:nth-child(even) {
    background: #FAFAFA;
}

.section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-block-2 .content-image,
.content-block-4 .content-image,
.content-block-6 .content-image,
.content-block-8 .content-image {
    order: -1;
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-icon {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.section-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.demo-notice {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid #D4AF37;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.demo-notice i {
    font-size: 1.2rem;
    color: #D4AF37;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.demo-notice p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

.demo-warning {
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid #D4AF37;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
}

.demo-warning i {
    font-size: 1.5rem;
    color: #D4AF37;
    flex-shrink: 0;
}

.demo-warning p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

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

.content-image svg {
    max-width: 100%;
    height: auto;
}

.demo-section {
    background: linear-gradient(135deg, #FAFAFA 0%, #FFFFFF 100%);
}

.demo-game-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8E7 100%);
}

.demo-game-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.demo-game-header {
    text-align: center;
    margin-bottom: 2rem;
}

.demo-game-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.demo-game-title i {
    font-size: 2.5rem;
}

.demo-money-badge {
    background: linear-gradient(135deg, #D4AF37 0%, #C9A031 100%);
    color: #FFFFFF;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.demo-warning-banner {
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid #D4AF37;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.demo-warning-banner i {
    font-size: 1.8rem;
    color: #D4AF37;
    flex-shrink: 0;
}

.demo-warning-banner p {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
}

.slot-machine-container {
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid #D4AF37;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.slot-reel {
    width: 120px;
    height: 150px;
    background: #FFFFFF;
    border: 3px solid #D4AF37;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.1);
    perspective: 1000px;
}

.slot-reel.spinning {
    animation: reelShake 0.1s infinite;
}

.slot-reel.spinning .slot-symbol {
    animation: spinSymbol 0.08s linear infinite;
}

@keyframes reelShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

@keyframes spinSymbol {
    0% { transform: translateY(0); }
    100% { transform: translateY(150px); }
}

.slot-reel.slowdown {
    animation: reelShake 0.2s infinite;
}

.slot-reel.slowdown .slot-symbol {
    animation: spinSlow 0.15s linear infinite;
}

@keyframes spinSlow {
    0% { transform: translateY(0); }
    100% { transform: translateY(150px); }
}

.slot-reel.stopping {
    animation: reelStop 0.3s ease-out;
}

@keyframes reelStop {
    0% { transform: translateX(-2px); }
    50% { transform: translateX(2px); }
    100% { transform: translateX(0); }
}

.slot-symbol {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.slot-symbol::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slot-reel.spinning .slot-symbol::before {
    opacity: 1;
    animation: shineMove 0.3s linear infinite;
}

@keyframes shineMove {
    0% { top: -2px; }
    100% { top: 150px; }
}

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

@keyframes reelWin {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(212, 175, 55, 0); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(212, 175, 55, 0.6); }
}

.slot-controls-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.balance-info {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #D4AF37;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.balance-info i {
    font-size: 1.3rem;
    color: #D4AF37;
}

.bet-selection {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.bet-selection label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.bet-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.bet-option {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    background: #FFFFFF;
    border: 2px solid #D4AF37;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bet-option:hover {
    background: rgba(212, 175, 55, 0.1);
}

.bet-option.active {
    background: #D4AF37;
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.win-message {
    min-height: 60px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #D4AF37;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spin-action-btn {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFFFFF;
    background: linear-gradient(135deg, #D4AF37 0%, #C9A031 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spin-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #E5C047 0%, #D4AF37 100%);
}

.spin-action-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.demo-disclaimer {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid #D4AF37;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 600px;
}

.demo-disclaimer i {
    font-size: 1.2rem;
    color: #D4AF37;
    flex-shrink: 0;
}

.demo-disclaimer p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
}

.demo-info-card {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #D4AF37;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.demo-info-card h3 {
    font-size: 1.5rem;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.demo-info-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-info-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.demo-info-card li i {
    color: #D4AF37;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.site-footer {
    background: #2C2C2C;
    color: #FFFFFF;
    padding: 4rem 0 2rem;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #D4AF37;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-description {
    font-size: 0.95rem;
    color: #CCCCCC;
    line-height: 1.7;
}

.footer-demo-badge {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid #D4AF37;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.footer-demo-badge i {
    color: #D4AF37;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: bold;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #CCCCCC;
}

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

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

.footer-links i {
    color: #D4AF37;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-disclaimer {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-disclaimer i {
    font-size: 1.5rem;
    color: #D4AF37;
    flex-shrink: 0;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #CCCCCC;
    line-height: 1.7;
}

.footer-copyright {
    text-align: center;
    font-size: 0.9rem;
    color: #AAAAAA;
    padding-top: 1rem;
}

@media (max-width: 1200px) {
    .hero-heading {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

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

@media (max-width: 992px) {
    .hero-heading {
        font-size: 3rem;
    }

    .hero-subheading {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .content-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-block-2 .content-image,
    .content-block-4 .content-image,
    .content-block-6 .content-image,
    .content-block-8 .content-image {
        order: 0;
    }

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

@media (max-width: 768px) {
    .header-wrapper {
        padding: 0.8rem 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

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

    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1000;
        overflow-y: auto;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 80px;
    }

    .main-navigation.active {
        transform: translateX(0);
    }

    .nav-items {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 1.2rem 2rem;
        width: 100%;
        text-align: left;
        font-size: 1.1rem;
        white-space: normal;
    }

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

    .nav-link:hover {
        background: rgba(212, 175, 55, 0.1);
        color: #D4AF37;
    }

    .hero-section {
        padding-top: 100px;
        min-height: auto;
    }

    .hero-container {
        padding: 3rem 1.5rem;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-subheading {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-warning {
        padding: 1rem 1.2rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    .content-section {
        padding: 3rem 0;
    }

    .section-wrapper {
        padding: 0 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-text {
        font-size: 1rem;
    }

    .demo-game-section {
        padding: 3rem 0;
    }

    .demo-game-wrapper {
        padding: 0 1.5rem;
    }

    .demo-game-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .slot-reels {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .slot-reel {
        width: 100px;
        height: 120px;
    }

    .slot-symbol {
        height: 120px;
        font-size: 3rem;
    }

    .slot-machine-container {
        padding: 2rem 1.5rem;
    }

    .bet-options {
        flex-direction: column;
        width: 100%;
    }

    .bet-option {
        width: 100%;
        max-width: 250px;
    }

    .spin-action-btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column {
        text-align: center;
    }

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

@media (max-width: 480px) {
    .header-wrapper {
        padding: 0.6rem 0.8rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo i {
        font-size: 1.3rem;
    }

    .mobile-menu-toggle {
        width: 26px;
        height: 20px;
    }

    .hamburger-line {
        height: 2.5px;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: translateY(8.75px) rotate(45deg);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: translateY(-8.75px) rotate(-45deg);
    }

    .hero-section {
        padding-top: 90px;
    }

    .hero-container {
        padding: 2rem 1rem;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .hero-subheading {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .demo-banner {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

    .primary-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .content-section {
        padding: 2.5rem 0;
    }

    .section-wrapper {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-text {
        font-size: 0.95rem;
    }

    .demo-game-title {
        font-size: 1.5rem;
    }

    .slot-machine-container {
        padding: 1.5rem 1rem;
    }

    .slot-reel {
        width: 80px;
        height: 100px;
    }

    .slot-symbol {
        height: 100px;
        font-size: 2.5rem;
    }

    .balance-info {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

    .spin-action-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
