/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-image {
    height: 40px;
    width: auto;
    margin-bottom: 0.2rem;
}

.logo span {
    color: #fff;
    font-size: 0.8rem;
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8B5CF6;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn-login, .btn-register {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login {
    background: transparent;
    color: #fff;
    border: 2px solid #8B5CF6;
}

.btn-login:hover {
    background: #8B5CF6;
    color: #fff;
}

.btn-register {
    background: linear-gradient(45deg, #8B5CF6, #A855F7);
    color: #fff;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
    padding-top: 80px; /* Account for fixed header */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%238B5CF6" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-banner {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 2rem;
}

.banner-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, #8B5CF6, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.feature i {
    color: #8B5CF6;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, #8B5CF6, #A855F7);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #8B5CF6;
}

.btn-secondary:hover {
    background: #8B5CF6;
    color: #fff;
}

/* Slot Machine Animation */
.slot-machine {
    width: 200px;
    height: 300px;
    background: linear-gradient(45deg, #2c3e50, #34495e);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    margin: 0 auto;
}

.slot-reel {
    width: 100%;
    height: 100%;
    background: #1a1a2e;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.slot-symbol {
    font-size: 2rem;
    animation: spin 2s infinite linear;
    opacity: 0.8;
}

.slot-symbol:nth-child(1) { animation-delay: 0s; }
.slot-symbol:nth-child(2) { animation-delay: 0.4s; }
.slot-symbol:nth-child(3) { animation-delay: 0.8s; }
.slot-symbol:nth-child(4) { animation-delay: 1.2s; }
.slot-symbol:nth-child(5) { animation-delay: 1.6s; }

@keyframes spin {
    0% { transform: translateY(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}

/* Article Section */
.article {
    padding: 2rem 0 6rem 0;
    background: #fff;
    margin-top: 0;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.2;
}

.article-text {
    line-height: 1.8;
    color: #555;
}

.article-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #8B5CF6;
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.article-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: justify;
}

.article-text strong {
    color: #8B5CF6;
    font-weight: 600;
}

.article-text p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: #333;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Games Section */
.games {
    padding: 6rem 0;
    background: #f8f9fa;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.game-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.game-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-info {
    padding: 1.5rem;
    text-align: center;
}

.game-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.game-info p {
    color: #666;
    margin-bottom: 1rem;
}

.btn-play {
    background: linear-gradient(45deg, #8B5CF6, #A855F7);
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

/* Promo Section */
.promo {
    padding: 6rem 0;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: #fff;
}

.promo .section-header h2,
.promo .section-header p {
    color: #fff;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.promo-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo-card::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;
}

.promo-card:hover::before {
    left: 100%;
}

.promo-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.promo-icon {
    font-size: 3rem;
    color: #EAB308;
    margin-bottom: 1rem;
}

.promo-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.promo-card p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.promo-value {
    display: inline-block;
    background: #EAB308;
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature i {
    color: #8B5CF6;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.about-feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.about-feature p {
    color: #666;
    line-height: 1.6;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 2rem;
    color: #8B5CF6;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8B5CF6;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #8B5CF6;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #8B5CF6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #8B5CF6;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    .btn-primary, .btn-secondary, .btn-play, .btn-login, .btn-register {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-menu a {
        padding: 12px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .game-card, .promo-card {
        cursor: pointer;
    }
    
    .contact-form input,
    .contact-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .contact-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 70px; /* Slightly less padding for mobile */
    }
    
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    /* Header Mobile */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 1rem 0;
    }
    
    .nav-buttons {
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .btn-login, .btn-register {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Hero Section Mobile */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 20px;
    }
    
    .hero-banner {
        margin-bottom: 1.5rem;
    }
    
    .banner-image {
        max-width: 90%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        gap: 0.8rem;
    }
    
    .feature {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Slot Machine Mobile */
    .slot-machine {
        width: 150px;
        height: 220px;
        margin: 0 auto;
    }
    
    .slot-symbol {
        font-size: 1.5rem;
    }
    
    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Games Section Mobile */
    .games {
        padding: 4rem 0;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .game-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    /* Promo Section Mobile */
    .promo {
        padding: 4rem 0;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .promo-card {
        padding: 1.5rem;
    }
    
    .promo-icon {
        font-size: 2.5rem;
    }
    
    /* Article Section Mobile */
    .article {
        padding: 1rem 0 4rem 0;
    }
    
    .article-content h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .article-text h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .article-text p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    /* About Section Mobile */
    .about {
        padding: 4rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .about-features {
        gap: 1.5rem;
    }
    
    .about-feature {
        text-align: left;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 4rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-item i {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 60px; /* Even less padding for smaller mobile */
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    /* Header Extra Small */
    .logo-image {
        height: 30px;
    }
    
    .logo span {
        font-size: 0.7rem;
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .btn-login, .btn-register {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }
    
    /* Hero Section Extra Small */
    .hero-container {
        padding: 0 15px;
        gap: 1.5rem;
    }
    
    .hero-banner {
        margin-bottom: 1rem;
    }
    
    .banner-image {
        max-width: 85%;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        margin-bottom: 1.5rem;
    }
    
    .feature {
        font-size: 0.9rem;
    }
    
    .feature i {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        max-width: 250px;
    }
    
    /* Slot Machine Extra Small */
    .slot-machine {
        width: 120px;
        height: 180px;
        padding: 15px;
    }
    
    .slot-symbol {
        font-size: 1.2rem;
    }
    
    /* Section Headers Extra Small */
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    /* Games Section Extra Small */
    .games {
        padding: 3rem 0;
    }
    
    .game-card {
        max-width: 300px;
    }
    
    .game-info {
        padding: 1rem;
    }
    
    .game-info h3 {
        font-size: 1.1rem;
    }
    
    .btn-play {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Promo Section Extra Small */
    .promo {
        padding: 3rem 0;
    }
    
    .promo-card {
        padding: 1rem;
    }
    
    .promo-icon {
        font-size: 2rem;
    }
    
    .promo-card h3 {
        font-size: 1.3rem;
    }
    
    .promo-value {
        padding: 0.4rem 1rem;
        font-size: 1rem;
    }
    
    /* Article Section Extra Small */
    .article {
        padding: 0.5rem 0 3rem 0;
    }
    
    .article-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .article-text h3 {
        font-size: 1.1rem;
        margin: 1.2rem 0 0.6rem 0;
    }
    
    .article-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    /* About Section Extra Small */
    .about {
        padding: 3rem 0;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-feature h3 {
        font-size: 1.1rem;
    }
    
    .about-feature p {
        font-size: 0.9rem;
    }
    
    /* Contact Section Extra Small */
    .contact {
        padding: 3rem 0;
    }
    
    .contact-item {
        padding: 0.8rem;
    }
    
    .contact-item i {
        font-size: 1.3rem;
    }
    
    .contact-item h3 {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Footer Extra Small */
    .footer {
        padding: 1.5rem 0 0.5rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .slot-machine {
        width: 100px;
        height: 150px;
        padding: 10px;
    }
    
    .slot-symbol {
        font-size: 1rem;
    }
}

/* Landscape orientation fixes for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-container {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .slot-machine {
        width: 120px;
        height: 160px;
    }
}

/* High DPI displays optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .btn-primary, .btn-secondary, .btn-play {
        font-weight: 600;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Mobile-specific animations */
@media (max-width: 768px) {
    .game-card, .promo-card, .about-feature, .contact-item {
        animation-duration: 0.4s;
    }
    
    .hero-title {
        animation: fadeInUp 0.8s ease-out;
    }
    
    .hero-subtitle {
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }
    
    .hero-features {
        animation: fadeInUp 0.8s ease-out 0.4s both;
    }
    
    .hero-buttons {
        animation: fadeInUp 0.8s ease-out 0.6s both;
    }
}

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
} 