:root {
    --primary-blue: #00B4DB;
    --secondary-blue: #0083B0;
    --orange: #FF6B00;
    --card-blue: #0066FF;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(180deg, #001f3f, #004080);
    min-height: 100vh;
    color: var(--text-color);
}

.hero-section {
    min-height: 100vh;
    position: relative;
}

/* Desktop styles */
@media (min-width: 769px) {
    .hero-section {
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        max-width: 1200px;
        margin: 0 auto;
    }

    .hero-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 4rem;
        gap: 2rem;
    }

    .hero-content {
        max-width: 500px;
    }

    .hero-image {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 2rem;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 20px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
    }

    .hero-top {
        display: flex;
        flex-direction: column-reverse;
        gap: 0;
    }

    .hero-content {
        text-align: left;
        padding: 0;
        margin-top: 0;
        position: relative;
        z-index: 1;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        position: relative;
    }

    .hero-content {
        padding: 0;
        position: relative;
        z-index: 1;
    }

    .hero-image {
        padding: 0;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        margin-bottom: -80px;
    }

    .hero-image img {
        width: 100%;
        max-height: 350px;
        object-fit: contain;
    }

    .star-icon {
        margin-bottom: 1rem;
        position: relative;
        z-index: 2;
    }

    .play-now-btn {
        margin-top: 1.5rem;
    }

    .features-slider {
        margin-top: auto;
        padding-bottom: 1rem;
    }

    .features-track {
        padding: 0;
    }

    .feature-card {
        min-width: 280px;
        margin-right: 1rem;
    }

    h1 {
        position: relative;
        margin-top: 0;
        padding-top: 0;
    }
}

/* Common styles */
.hero-content {
    color: white;
    position: relative;
    z-index: 2;
}

.star-icon {
    background: var(--orange);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 20px;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-content p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    opacity: 0.9;
}

.play-now-btn {
    background: #FF6B00;
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.play-now-btn:hover {
    background: #FF4500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

/* Features slider styles */
.features-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    overflow: hidden;
    padding: 0 40px;
}

.features-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease-in-out;
    padding: 1rem;
    width: 900px;
    margin: 0 auto;
}

.feature-card {
    min-width: 280px;
    width: 280px;
    flex: 0 0 280px;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-card .card-icon,
.feature-card h3,
.feature-card p {
    position: relative;
    z-index: 1;
}

.feature-card.blue {
    background: linear-gradient(135deg, #0066FF, #0044CC);
}

.feature-card.orange {
    background: linear-gradient(135deg, #FF6B00, #FF4500);
}

.feature-card.cyan {
    background: linear-gradient(135deg, #00B4DB, #0083B0);
}

.feature-card.green {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.feature-card.purple {
    background: linear-gradient(135deg, #6f42c1, #4e2a84);
}

@media (max-width: 768px) {
    .features-slider {
        padding: 0 20px;
        margin: 2rem auto;
    }
    
    .features-track {
        width: 280px;
        gap: 1rem;
        padding: 0.5rem;
    }

    .feature-card {
        min-width: 280px;
        width: 280px;
        padding: 1.5rem;
    }

    .slider-arrow {
        width: 32px;
        height: 32px;
    }

    .slider-arrow.prev {
        left: -5px;
    }

    .slider-arrow.next {
        right: -5px;
    }
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

@media (max-width: 768px) {
    .features-slider {
        padding: 0 30px;
        margin: 2rem auto;
    }
    
    .features-track {
        gap: 1rem;
        padding: 0.5rem;
    }

    .feature-card {
        min-width: 260px;
        flex: 0 0 260px;
        padding: 1.5rem;
    }

    .feature-card .card-icon {
        font-size: 3.5rem;
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

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

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }

    .slider-arrow.prev {
        left: 5px;
    }

    .slider-arrow.next {
        right: 5px;
    }
}

.feature-card .card-icon {
    width: 94px;
    height: 94px;
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.feature-card:hover .card-icon img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .feature-card .card-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-top {
        padding: 0 2rem;
    }

    .hero-image {
        max-width: 400px;
        height: 400px;
    }
}

/* Desktop styles */
@media (min-width: 1025px) {
    .hero-top {
        padding: 0 3rem;
        min-height: 600px;
    }
}

/* Tablet and larger screens */
@media (min-width: 768px) {
    .hero-section {
        max-width: 768px;
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .play-now-btn {
        padding: 1rem 3rem;
        font-size: 1.1rem;
    }

    .features-track {
        gap: 1.5rem;
    }

    .feature-card {
        min-width: 280px;
    }
}

/* Desktop screens */
@media (min-width: 1024px) {
    .hero-section {
        max-width: 1200px;
        padding: 3rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .slider-arrow {
        display: block;
    }
}

footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem 1rem;
    margin-top: auto;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    footer {
        margin-top: 3rem;
        padding: 1.5rem 1rem;
    }
}
