    @import url('https://fonts.googleapis.com/css2?family=Anton&family=Edu+VIC+WA+NT+Hand:wght@400..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


    /* Базові налаштування */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .social-links>a,
    .social-links>a>img {
        width: 25px;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
        color: #c7d5e0;
        line-height: 1.6;
        overflow-x: hidden;
        scroll-behavior: smooth;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Навігація */
    .navbar {
        background: rgba(27, 40, 56, 0.95);
        backdrop-filter: blur(10px);
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        border-bottom: 1px solid rgba(103, 193, 245, 0.2);
    }

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        height: 60px;
    }

    .nav-logo h2 {
        color: #67c1f5;
        font-size: 24px;
        font-weight: bold;
        text-shadow: 0 0 10px rgba(103, 193, 245, 0.5);

        span {
            text-decoration: line-through red;
        }
    }

    .nav-menu {
        display: flex;
        gap: 30px;
    }

    .nav-link {
        color: #c7d5e0;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        padding: 5px 0;
    }

    .nav-link:hover {
        color: #67c1f5;
        text-shadow: 0 0 10px rgba(103, 193, 245, 0.7);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #67c1f5, #4fc3f7);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .nav-actions {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .search-btn,
    .cart-btn,
    .profile-btn {
        background: rgba(103, 193, 245, 0.1);
        border: 1px solid rgba(103, 193, 245, 0.3);
        color: #c7d5e0;
        padding: 8px 12px;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 14px;
    }

    .search-btn:hover,
    .cart-btn:hover,
    .profile-btn:hover {
        background: rgba(103, 193, 245, 0.2);
        box-shadow: 0 0 15px rgba(103, 193, 245, 0.3);
        transform: translateY(-2px);
    }

    .search-box {
        position: absolute;
        top: 50px;
        opacity: 0;
    }

    .search-btn:checked~.search-box {
        opacity: 1;
    }

    .cart-count {
        background: #e74c3c;
        color: white;
        border-radius: 50%;
        padding: 2px 6px;
        font-size: 11px;
        margin-left: 5px;
    }

    /* Головний банер */
    .hero {
        margin-top: 60px;
        height: 70vh;
        position: relative;
        overflow: hidden;
    }

    .hero-slider {
        height: 100%;
        position: relative;
    }

    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .slide.active {
        opacity: 1;
    }

    .slide-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        filter: brightness(0.7);
    }

    .slide-bg-1 {
        background-image: url(../assets/image/cyberpunk2077-bg.png);
    }

    .block-bg-divide {
        background-color: black;
    }

    .divide-info-img {
        width: 100px;
        position: absolute;
        top: 0;
        left: 0;

    }

    .slide-content {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        padding: 0 60px;
    }

    .slide-info {
        padding-block: 400px;
        padding-inline: 100px;
        max-width: 600px;
        z-index: 3;
        background-color: #494545ab;
        border-radius: 5px;
        position: relative;
        left: -60px;
    }

    .slide-info h1 {
        font-size: 4rem;
        font-weight: bold;
        margin-bottom: 20px;
        background: linear-gradient(45deg, #67c1f5, #4fc3f7, #26c6da);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 0 30px rgba(103, 193, 245, 0.5);
        animation: title-glow 3s ease-in-out infinite alternate;
        font-family: "Edu VIC WA NT Hand", cursive;
    }

    @keyframes title-glow {
        0% {
            filter: drop-shadow(0 0 20px rgba(103, 193, 245, 0.7));
        }

        100% {
            filter: drop-shadow(0 0 40px rgba(79, 195, 247, 0.9));
        }
    }

    .slide-info p {
        font-size: 1.3rem;
        margin-bottom: 30px;
        color: #b0bec5;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .slide-meta {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .price {
        font-size: 2rem;
        font-weight: bold;
        color: #4caf50;
        text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
    }

    .discount {
        background: linear-gradient(45deg, #e74c3c, #c0392b);
        color: white;
        padding: 8px 12px;
        border-radius: 8px;
        font-weight: bold;
        animation: discount-pulse 2s ease-in-out infinite;
    }

    @keyframes discount-pulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }
    }

    .original-price {
        text-decoration: line-through;
        color: #78909c;
        font-size: 1.2rem;
    }

    .slide-actions {
        display: flex;
        gap: 20px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 15px 30px;
        border: none;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .btn-primary {
        background: linear-gradient(45deg, #4caf50, #45a049);
        color: white;
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(76, 175, 80, 0.6);
    }

    .btn-secondary {
        background: rgba(103, 193, 245, 0.1);
        color: #67c1f5;
        border: 2px solid #67c1f5;
    }

    .btn-secondary:hover {
        background: rgba(103, 193, 245, 0.2);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(103, 193, 245, 0.3);
    }

    /* Секції */
    .featured-section,
    .categories-section,
    .deals-section,
    .news-section {
        padding: 80px 0;
        position: relative;
    }


    .section-title {
        font-size: 2.5rem;
        margin-bottom: 50px;
        text-align: center;
        background: linear-gradient(45deg, #67c1f5, #4fc3f7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }


    img {
        width: 100%;
    }

    /* Ігрові картки */
    .games-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .game-card {
        background: rgba(42, 71, 94, 0.8);
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid rgba(103, 193, 245, 0.1);
        position: relative;
    }

    .game-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent, rgba(103, 193, 245, 0.1), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .game-card:hover::before {
        opacity: 1;
    }

    a {
        text-decoration: none;
    }

    .game-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        border-color: rgba(103, 193, 245, 0.3);
    }

    .game-image {
        height: 200px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .game-img-1 {
        background-image: url(../assets/image/thewitcher3-bg.png);
    }

    .game-img-2 {
        background-image: url(../assets/image/reddeadredemption-bg.png);
    }

    .game-img-3 {
        background-image: url(../assets/image/eldenring-bg.png);
    }

    .game-img-4 {
        background-image: url(../assets/image/gtav-bg.png);
    }

    .game-info {
        padding: 20px;
    }

    .game-info h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
        color: #ffffff;
    }

    .game-genre {
        color: #90a4ae;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .game-rating {
        margin-bottom: 15px;
        font-size: 0.9rem;
        color: rgb(0, 195, 255);
    }

    .game-price {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .current-price {
        font-size: 1.4rem;
        font-weight: bold;
        color: #4caf50;
    }

    .original-price {
        text-decoration: line-through;
        color: #78909c;
    }

    .discount {
        background: #e74c3c;
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: bold;
    }

    /* Категорії */
    .categories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }

    .category-card {
        background: rgba(42, 71, 94, 0.6);
        padding: 30px 20px;
        border-radius: 15px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(103, 193, 245, 0.1);
        position: relative;
        overflow: hidden;
    }

    .category-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transform: rotate(45deg);
        transition: all 0.5s ease;
        opacity: 0;
    }

    .category-card:hover::before {
        opacity: 1;
        animation: shine 1.2s ease-in-out;
    }

    @keyframes shine {
        0% {
            transform: translateX(-100%) translateY(-100%) rotate(45deg);
        }

        100% {
            transform: translateX(100%) translateY(100%) rotate(45deg);
        }
    }

    .category-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
        border-color: rgba(103, 193, 245, 0.4);
    }

    .category-icon {
        font-size: 3rem;
        margin-bottom: 15px;
        filter: drop-shadow(0 0 10px rgba(103, 193, 245, 0.5));
    }

    .category-icon>img {
        width: 100px;
    }

    .category-card h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
        color: #ffffff;
    }

    .category-card p {
        color: #90a4ae;
        font-size: 0.9rem;
    }

    /* Спеціальні пропозиції */
    .deals-section {
        background: rgba(27, 40, 56, 0.5);
    }

    .deals-timer {
        text-align: center;
        margin-bottom: 40px;
        padding: 15px;
        background: rgba(231, 76, 60, 0.1);
        border: 1px solid rgba(231, 76, 60, 0.3);
        border-radius: 10px;
    }

    .timer {
        color: #e74c3c;
        font-weight: bold;
        font-size: 1.2rem;
        text-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
    }

    .deals-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }

    .deal-card {
        background: rgba(42, 71, 94, 0.8);
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid rgba(231, 76, 60, 0.2);
        position: relative;
    }

    .deal-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(231, 76, 60, 0.2);
        border-color: rgba(231, 76, 60, 0.4);
    }

    .deal-image {
        height: 180px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .deal-img-1 {
        background-image: url(../assets/image/doomEternal-bg.png);
    }

    .deal-img-2 {
        background-image: url(../assets/image/assasinsValgala-bg.png);
    }

    .deal-img-3 {
        background-image: url(../assets/image/control-bg.png);
    }

    .deal-info {
        padding: 20px;
        position: relative;
    }

    .deal-discount {
        position: absolute;
        top: -25px;
        right: 20px;
        background: linear-gradient(45deg, #e74c3c, #c0392b);
        color: white;
        padding: 8px 15px;
        border-radius: 20px;
        font-weight: bold;
        font-size: 1.1rem;
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
        animation: deal-bounce 2s ease-in-out infinite;
    }

    @keyframes deal-bounce {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-5px);
        }
    }

    .deal-info h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        color: #ffffff;
    }

    .deal-price {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .deal-price .current {
        font-size: 1.8rem;
        font-weight: bold;
        color: #4caf50;
        text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
    }

    .deal-price .original {
        text-decoration: line-through;
        color: #78909c;
        font-size: 1.2rem;
    }

    .news-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 25px;
        height: 500px;
    }

    .news-main {
        width: 553px;
    }

    .news-card {
        background: rgba(42, 71, 94, 0.8);
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid rgba(103, 193, 245, 0.1);
        position: relative;
        cursor: pointer;
        height: 500px;
    }

    .news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
        border-color: rgba(103, 193, 245, 0.3);
    }

    .news-image {
        height: 50%;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .news-img-1 {
        background-image: url(../assets/image/gas-bg.jpg);
    }

    .news-img-2 {
        background-image: url(../assets/image/newGame-bg.png);
    }

    .news-img-3 {
        background-image: url(../assets/image/steamAwards-bg.png);
    }

    .news-content {
        padding: 20px;
        height: 40%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .news-main .news-content {
        height: 30%;
    }

    .news-category {
        background: rgba(103, 193, 245, 0.2);
        color: #67c1f5;
        padding: 4px 12px;
        border-radius: 12px;
        font-size: 0.8rem;
        font-weight: bold;
        width: fit-content;
        margin-bottom: 10px;
    }

    .news-content h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
        color: #ffffff;
        line-height: 1.3;
    }

    .news-main .news-content h3 {
        font-size: 1.6rem;
    }

    .news-content p {
        color: #b0bec5;
        font-size: 0.9rem;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .news-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.8rem;
        color: #78909c;
    }

    .footer {
        background: rgba(27, 40, 56, 0.9);
        padding: 60px 0 30px;
        border-top: 1px solid rgba(103, 193, 245, 0.1);
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-section h4 {
        color: #67c1f5;
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section ul li {
        margin-bottom: 10px;
    }

    .footer-section ul li a {
        color: #b0bec5;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-section ul li a:hover {
        color: #67c1f5;
    }

    .social-links {
        display: flex;
        gap: 15px;
    }

    .social-links a {
        display: inline-block;
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }

    .social-links a:hover {
        transform: translateY(-3px);
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 30px;
        border-top: 1px solid rgba(103, 193, 245, 0.1);
    }

    .footer-links {
        display: flex;
        gap: 20px;
    }

    .footer-links a {
        color: #78909c;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: #67c1f5;
    }

    /* Плаваюча кнопка підтримки */
    .support-btn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 1000;
    }

    .support-button {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(45deg, #67c1f5, #4fc3f7);
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        box-shadow: 0 4px 20px rgba(103, 193, 245, 0.4);
        transition: all 0.3s ease;
        animation: support-pulse 3s ease-in-out infinite;
    }

    @keyframes support-pulse {

        0%,
        100% {
            transform: scale(1);
            box-shadow: 0 4px 20px rgba(103, 193, 245, 0.4);
        }

        50% {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(103, 193, 245, 0.6);
        }
    }

    .support-button:hover {
        transform: scale(1.15);
        box-shadow: 0 8px 30px rgba(103, 193, 245, 0.7);
    }

    @media (max-width: 1024px) {
        .nav-menu {
            display: none;
        }

        .slide-info h1 {
            font-size: 3rem;
        }

        .games-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }

        .news-grid {
            grid-template-columns: 1fr;
            grid-template-rows: auto;
            height: auto;
        }

        .news-main {
            grid-row: auto;
        }
    }

    @media (max-width: 768px) {
        .container {
            padding: 0 15px;
        }

        .slide-content {
            padding: 0 30px;
        }

        .slide-info h1 {
            font-size: 2.5rem;
        }

        .slide-actions {
            flex-direction: column;
            gap: 15px;
        }

        .btn-primary,
        .btn-secondary {
            width: 100%;
            text-align: center;
        }

        .categories-grid {
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        }

        .deals-grid {
            grid-template-columns: 1fr;
        }

        .footer-content {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        .slide-info h1 {
            font-size: 2rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .games-grid {
            grid-template-columns: 1fr;
        }

        .categories-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .footer-content {
            grid-template-columns: 1fr;
        }

        .support-btn {
            bottom: 20px;
            right: 20px;
        }

        .support-button {
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }
    }