        @font-face {
            font-family: 'CustomFont';
            src: url('../font/my.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

        @font-face {
            font-family: 'CustomFontBold';
            src: url('../font/my.ttf') format('truetype');
            font-weight: bold;
            font-style: normal;
        }

        @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

        :root {
            --accent-color: var(--color1);
            --second-color: var(--color2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            user-select: none;
        }

        html, body {
            font-family: 'CustomFont', "Montserrat", sans-serif;
            scroll-behavior: smooth;
            color: white;
            overflow-x: hidden;
            position: relative;

        }

        .main-container {
            position: relative;
            width: 100%;
            min-height: 100vh;
        }

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background: 
        linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%),
        url('../images/back.png') center/cover no-repeat;
    animation: backgroundMove 30s ease-in-out infinite;
}



        .video-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: -1;
        }

        .header {
            position: fixed;
            top: 0;
            width: 100%;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            background: rgba(0, 0, 0, 0.4);
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 60px;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            font-family: 'CustomFontBold', "Montserrat", sans-serif;
            background: linear-gradient(45deg, var(--accent-color), var(--second-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            flex-shrink: 0;
        }

        .nav-center {
            display: flex;
            justify-content: center;
            flex: 1;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, var(--accent-color), var(--second-color));
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .auth-buttons {
            display: flex;
            gap: 15px;
            flex-shrink: 0;
        }

        .btn {
            padding: 10px 20px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            font-family: 'CustomFont', "Montserrat", sans-serif;
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid var(--accent-color);
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .content-sections {
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            width: 100%;
            position: relative;
            z-index: 1;
            min-height: 100vh;
            padding: 120px 0 80px;
        }

        .section {
            padding: 60px 20px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            font-weight: 700;
            font-family: 'CustomFontBold', "Montserrat", sans-serif;
            margin-bottom: 20px;
            background: linear-gradient(45deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 80px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .product-card {
            background: rgba(20, 20, 20, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
            height: 400px;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-color);
            box-shadow: 0 15px 35px rgba(161, 140, 255, 0.2);
        }

        .product-video-container {
            position: relative;
            height: 200px;
            overflow: hidden;
            background: #1a1a1a;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-content {
            padding: 30px 20px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            text-align: center;
        }

        .product-info {
            margin-bottom: 20px;
        }

        .product-duration {
            font-size: 1.2rem;
            font-weight: 600;
            color: white;
            margin-bottom: 8px;
        }

        .product-price {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 5px;
        }

        .product-total {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--accent-color);
        }

        .product-btn {
            width: 100%;
            padding: 12px;
            background: rgba(40, 40, 40, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: white;
            font-weight: 500;
            font-family: 'CustomFont', "Montserrat", sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .product-btn:hover {
            background: var(--accent-color);
            border-color: var(--accent-color);
            transform: translateY(-1px);
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {

            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            margin: 5% auto;
            padding: 40px;

            border-radius: 20px;
            width: 90%;
            max-width: 500px;
            position: relative;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .close {
            color: rgba(255, 255, 255, 0.6);
            float: right;
            font-size: 28px;
            font-weight: bold;
            position: absolute;
            right: 20px;
            top: 15px;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close:hover {
            color: var(--accent-color);
        }

        .modal-title {
            font-size: 1.8rem;
            font-family: 'CustomFontBold', "Montserrat", sans-serif;
            margin-bottom: 10px;
            background: linear-gradient(45deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
        }

        .modal-subtitle {
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            margin-bottom: 30px;
            font-size: 1rem;
        }

        .selected-plan {
            background: rgba(161, 140, 255, 0.1);
            border: 1px solid var(--accent-color);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 30px;
        }

        .selected-plan-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: white;
            margin-bottom: 5px;
        }

        .selected-plan-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-color);
        }

        .payment-options {
            display: grid;
            gap: 15px;
            margin-bottom: 30px;
        }

        .payment-option {
            background: rgba(40, 40, 40, 0.459);

            border-radius: 12px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .payment-option:hover {
            border-color: var(--accent-color);
            background: rgba(161, 140, 255, 0.1);
            transform: translateY(-2px);
        }

        .payment-logo {
            width: 50px;
            height: 50px;
            flex-shrink: 0;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
        }

        .payment-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 4px;
        }

        .payment-info {
            flex: 1;
        }

        .payment-name {
            font-weight: 600;
            color: white;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .payment-desc {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .product-video::-webkit-media-controls {
            display: none !important;
        }
        
        .product-video::-webkit-media-controls-panel {
            display: none !important;
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .nav-center {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .nav-container {
                padding: 15px 30px;
            }

            .auth-buttons {
                display: none;
            }

            .section-title {
                font-size: 2.2rem;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 10px;
            }
            
            .product-card {
                height: 350px;
            }
            
            .product-video-container {
                height: 160px;
            }

            .modal-content {
                margin: 2% auto;
                padding: 30px;
                width: 95%;
            }

            .modal-title {
                font-size: 1.5rem;
            }
        }