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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
    color: #e8e8e8;
    line-height: 1.8;
    font-size: 15px;
    display: block;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    width: 100%;
}

.main-header {
    background: linear-gradient(90deg, rgba(22, 30, 46, 0.9) 0%, rgba(14, 21, 58, 0.9) 100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 0 1.5rem;
    box-sizing: border-box;
    border-bottom: 2px solid #2d4a72;
}

.navbar {
    display: flex;
    align-items: center;
    height: 75px;
    max-width: 1300px;
    margin: 0 auto;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    text-decoration: none;
    font-size: 2.1rem;
    font-weight: 800;
    flex-shrink: 0;
}

.logo-text {
    color: #64b5f6;
}

.logo-accent {
    color: #ff6b35;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: #b0bec5;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links li a:hover {
    color: #64b5f6;
    transform: translateY(-2px);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #64b5f6, #ff6b35);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
    border-radius: 15px;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-account {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff !important;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.nav-account:hover {
    background: linear-gradient(45deg, #e55a2b, #e8821a);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    color: #fff !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 32px;
    height: 24px;
    justify-content: space-between;
    position: relative;
    z-index: 1001;
    background: none;
    border: none;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #64b5f6, #ff6b35);
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #161e2f 0%, #0e153a 100%);
        flex-direction: column;
        align-items: center;
        padding: 2.5rem 0;
        gap: 2rem;
        border-top: 2px solid #2d4a72;
    }

    .nav-links.active {
        display: flex;
    }
}

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.8) 0%, rgba(26, 26, 46, 0.8) 50%, rgba(45, 74, 114, 0.8) 100%);
    min-height: 100vh;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    background: linear-gradient(135deg, rgba(22, 30, 46, 0.9) 0%, rgba(14, 21, 58, 0.9) 100%);
    color: #e8e8e8;
    padding: 4rem;
    border-radius: 30px;
    width: 100%;
    text-align: center;
    margin: 0 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 181, 246, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(45deg, #64b5f6, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    color: #b0bec5;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero-primary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-thank-you {
    position: relative;
    top: 40px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    border: 2px solid transparent;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-hero-primary:hover {
    background: linear-gradient(45deg, #e55a2b, #e8821a);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.6);
}

.btn-hero-secondary {
    background: transparent;
    color: #64b5f6;
    border: 2px solid #64b5f6;
}

.btn-hero-secondary:hover {
    background: #64b5f6;
    color: #0f0f0f;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(100, 181, 246, 0.4);
}

section {
    padding: 8rem 0;
}

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

.section-title {
    font-size: 3rem;
    color: #e8e8e8;
    font-weight: 700;
    background: linear-gradient(45deg, #64b5f6, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #ff6b35;
}

.section-link:hover {
    background: #ff6b35;
    color: #fff;
    transform: scale(1.05);
}

.featured-section {
    background: linear-gradient(135deg, #161e2f 0%, #0e153a 100%);
}

.featured-grid,
.offers-grid,
.categories-grid,
.free-games-grid,
.trending-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.game-card,
.offer-card,
.free-game-card,
.trending-card,
.feature-card {
    background: linear-gradient(135deg, #1c2333 0%, #2d4a72 100%);
    border: 1px solid rgba(100, 181, 246, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
}

.game-card:hover,
.offer-card:hover,
.free-game-card:hover,
.trending-card:hover,
.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(100, 181, 246, 0.3);
    border-color: #64b5f6;
}

.game-image,
.offer-card img,
.free-game-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover .game-image,
.offer-card:hover img,
.free-game-card:hover .free-game-image img {
    transform: scale(1.1);
}

.game-badge,
.offer-badge,
.free-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.4);
}

.game-info,
.offer-content,
.free-game-info,
.trending-info {
    padding: 2rem;
}

.game-title,
.offer-content h3,
.free-game-info h3,
.trending-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #e8e8e8;
    font-weight: 600;
}

.game-developer,
.offer-description,
.free-period {
    color: #b0bec5;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.game-price,
.offer-price {
    font-size: 1.2rem;
    font-weight: 700;
}

.price-current {
    color: #ff6b35;
}

.price-original {
    text-decoration: line-through;
    color: #78909c;
    margin-right: 0.8rem;
}

.discount {
    color: #4caf50;
    font-weight: 700;
    margin-right: 0.8rem;
}

.categories-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
}

.category-card {
    display: block;
    text-decoration: none;
    overflow: hidden;
    border-radius: 25px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover {
    border-color: #64b5f6;
    transform: scale(1.03);
}

.category-card:hover .category-image {
    transform: scale(1.15);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15, 15, 15, 0.95));
    color: #e8e8e8;
    padding: 2.5rem 2rem 2rem;
    backdrop-filter: blur(5px);
}

.category-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #64b5f6;
    font-weight: 700;
}

.category-overlay span {
    opacity: 0.85;
    font-size: 0.95rem;
    color: #b0bec5;
}

.free-games-section {
    background: linear-gradient(135deg, #161e2f 0%, #0e153a 100%);
}

.free-game-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.free-game-image img {
    height: 280px;
}

.upcoming .free-badge {
    background: linear-gradient(45deg, #607d8b, #455a64);
}

.btn-claim,
.btn-notify {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 1.5rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-claim:hover,
.btn-notify:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-notify {
    background: linear-gradient(45deg, #607d8b, #455a64);
}

.btn-notify:hover {
    box-shadow: 0 8px 25px rgba(96, 125, 139, 0.4);
}

.trending-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
}

.trending-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    gap: 1.5rem;
    background: linear-gradient(135deg, #1c2333 0%, #2d4a72 100%);
    border-radius: 20px;
}

.trending-rank {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.4);
}

.trending-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.trending-info p {
    color: #b0bec5;
    font-size: 0.95rem;
    margin: 0;
}

.trending-price {
    margin-left: auto;
    font-weight: 700;
    color: #ff6b35;
    flex-shrink: 0;
}

.newsletter-section {
    background: linear-gradient(135deg, #161e2f 0%, #0e153a 100%);
}

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

.newsletter-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #e8e8e8;
    background: linear-gradient(45deg, #64b5f6, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.newsletter-text p {
    color: #b0bec5;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.form-group input {
    flex: 1;
    padding: 1.2rem;
    border: 2px solid rgba(100, 181, 246, 0.3);
    border-radius: 25px;
    font-size: 1rem;
    background: rgba(28, 35, 51, 0.8);
    color: #e8e8e8;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #64b5f6;
    box-shadow: 0 0 20px rgba(100, 181, 246, 0.3);
}

.btn-subscribe {
    padding: 1.2rem 2.5rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-subscribe:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #b0bec5;
    text-align: left;
    justify-content: center;
}

.checkbox-label input {
    margin-top: 0.3rem;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.error-message,
.success-message {
    font-size: 0.95rem;
    margin-top: 0.8rem;
    display: none;
    border-radius: 15px;
    padding: 0.8rem;
}

.error-message {
    color: #f44336;
    background: rgba(244, 67, 54, 0.1);
}

.success-message {
    color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
    margin-top: 1.5rem;
}

.features-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
}

.feature-card {
    text-align: center;
    padding: 3rem;
    border-radius: 25px;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    filter: brightness(1.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: #64b5f6;
    font-weight: 600;
}

.feature-card p {
    color: #b0bec5;
    font-size: 1.05rem;
    line-height: 1.7;
}

.main-footer {
    background: linear-gradient(135deg, #0e1421 0%, #1a1a2e 100%);
    color: #b0bec5;
    padding: 5rem 25px 2.5rem;
    border-top: 2px solid #2d4a72;
}

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

.footer-section h3 {
    color: #64b5f6;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

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

.footer-section li {
    margin-bottom: 0.9rem;
}

.footer-section a {
    color: #b0bec5;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.2rem 0;
}

.footer-section a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    border-top: 1px solid #2d4a72;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-legal p {
    margin: 0;
    font-size: 0.95rem;
    color: #78909c;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: #b0bec5;
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(100, 181, 246, 0.1);
}

.footer-social a:hover {
    color: #ff6b35;
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 107, 53, 0.2);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(14, 20, 33, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    backdrop-filter: blur(15px);
    color: #e8e8e8;
    padding: 2rem;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 2px solid #2d4a72;
}

.cookie-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    max-width: 1300px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 320px;
    font-size: 0.95rem;
    color: #b0bec5;
}

.cookie-buttons {
    display: flex;
    gap: 1.2rem;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-accept {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-reject {
    background: transparent;
    color: #b0bec5;
    border: 2px solid rgba(176, 190, 197, 0.5);
}

.btn-reject:hover {
    background: rgba(176, 190, 197, 0.1);
    color: #e8e8e8;
    border-color: #b0bec5;
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: linear-gradient(135deg, rgba(22, 30, 46, 0.98) 0%, rgba(14, 21, 58, 0.98) 100%);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        border-top: 2px solid #2d4a72;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li a {
        font-size: 1.8rem;
        color: #e8e8e8;
    }

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

    .nav-account {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 2.5rem 1.5rem;
        border-radius: 25px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
        gap: 1.5rem;
    }

    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .trending-card {
        padding: 1.2rem;
        gap: 1rem;
    }

    .trending-card img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-section {
        min-height: 500px;
    }

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

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

    .hero-content {
        padding: 2rem 1rem;
        margin: 0 15px;
    }

    .featured-grid,
    .offers-grid,
    .categories-grid,
    .free-games-grid,
    .trending-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .game-info,
    .offer-content,
    .free-game-info,
    .trending-info {
        padding: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .newsletter-text h2 {
        font-size: 2.2rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-thank-you {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

.hidden {
    display: none;
}

.cookie-banner-link {
    color: #64b5f6;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner-link:hover {
    color: #ff6b35;
}

.main-form-container {
    margin: 0 auto;
    background: linear-gradient(135deg, #1c2333 0%, #2d4a72 100%);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(100, 181, 246, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}