   
:root {
            --primary: #FF7B25;
            --primary-dark: #D43F00;
            --primary-light: #FF9A56;
            --accent: #FF3D00;
            --dark: #0a0a0a;
            --darker: #050505;
            --light: #f5f5f5;
            --lighter: #ffffff;
            --gray: #a0a0a0;
            --border: #1f1f1f;
            --card-bg: #141414;
            --success: #10b981;
            --error: #ef4444;
            --discount: #FF7B25;
            --alert-bg: #1e1e1e;
            --safe-top: env(safe-area-inset-top, 0px);
            --safe-bottom: env(safe-area-inset-bottom, 0px);
            --nav-height: 60px;
            --basic-color: #4CAF50;
            --pro-color: #2196F3;
            --unlimited-color: #9C27B0;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scrollbar-width: none;
            -webkit-tap-highlight-color: transparent;
        }
        
        *::-webkit-scrollbar {
            display: none;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }
     .for-nav {

           
            height: var(--nav-height);
            background: var(--darker);

            margin-top: 50px !important ;
     }


/* Navbar */
.navbar {
  background-color: #161616;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  height: 30px;
  max-width: 100%;
  position: fixed;
  top: -100px; /* Hide initially for animation */
  left: 0;
  right: 0;
  z-index: 1000;
  animation: slideDown 0.8s ease-out forwards;
}

/* Keyframe for slide-in */
@keyframes slideDown {
  from {
    top: -100px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

/* Logo */
.logo img {
  height: 32px;
  width: auto;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #aaa;
}

.arrow {
  margin-left: 4px;
  font-size: 14px;
}

/* Animated Button */
.login-btn {
  background-color: #d35400;
  color: white;
  padding: 10px 20px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.login-btn:hover {
  background-color: #e67e22;
  transform: scale(1.05);
}



.dp-wrapper {
  position: relative;
  cursor: pointer;
}

.dp {
  width: 40px;
  height: 40px;
 
  border-radius: 50%;
  
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  overflow: hidden;
}
.imgdp {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover; 
  display: block;
}



.dp-dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 8px;
  box-shadow: 0 8px 12px rgba(0,0,0,0.5);
  display: none;
  flex-direction: column;
  min-width: 120px;
  z-index: 1000;
  padding: 5px 0;
}

.dp-dropdown button {
  background: none;
  border: none;
  padding: 10px 16px;
  color: #fff;
  text-align: left;
  cursor: pointer;
  width: 100%;
  font-size: 14px;
}

.dp-dropdown button:hover {
  background-color: #333;
}







/* 🔸 Animated Background on Hover */
.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #3e3e3e, #b1b1b1, #000000);
  background-size: 100% 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.navbar:hover::before {
  animation: navSweep 3s ease-out forwards;
  opacity: 0.15;
}

/* Background Sweep Animation */
@keyframes navSweep {
  0% {
    left: -100%;
  }
  50% {
    left: 0%;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@media (max-width: 1024px) {
  .game-section, .hero, .pricing-container {
    padding-top: 70px;
  }
}

@media (max-width: 768px) {
  .game-section, .hero, .pricing-container {
    padding-top: 80px;
  }
}


/* Hamburger (Mobile Only) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 110100 !important;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Slide-out Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 220px;
  background: #161616;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: 80px 20px;
  gap: 20px;
  transition: right 0.4s ease-in-out;
  z-index: 110000 !important;
}
.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #2a2a2a;
}
.mobile-menu a:hover {
  color: #f97316;
  padding-left: 8px;
}

/* Active states */
.mobile-menu.active {
  right: 0;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

/* Responsive control */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}



































        
        /* Mobile Navigation */
        .mobile-nav {
            display: none;
            position: fixed;
            top: var(--safe-top);
            left: 0;
            right: 0;
            height: var(--nav-height);
            background: var(--darker);
            border-bottom: 1px solid var(--border);
            justify-content: space-between;
            align-items: center;
            padding: 0 1.5rem;
            z-index: 999;
            margin-top: 50px !important;
        }
        
        .mobile-nav-title {
            font-size: 1.2rem;
            font-weight: 700;
            background: linear-gradient(90deg, var(--primary-light), var(--primary));
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .mobile-nav-toggle {
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.4rem;
            cursor: pointer;
        }
        
        /* Split Container Layout */
        .split-container {
            display: flex;
            min-height: 100vh;
            position: relative;
        }
        
        .panel {
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }
        
        .left-panel {
            width: 40%;
            background: var(--darker);
            border-right: 1px solid var(--border);
            padding: 2rem;
            overflow-y: auto;
            position: relative;
            z-index: 990;
            margin-top: 50px;
        }
        
        .right-panel {
            width: 60%;
            background: var(--dark);
            padding: 2rem;
            overflow-y: auto;
            position: relative;
            z-index: 1;
        }
        
        .panel-slide-left {
            transform: translateX(-100%);
        }
        
        .panel-slide-right {
            transform: translateX(100%);
        }
        
        /* Panel controls */
        .panel-controls {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .panel-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 123, 37, 0.2);
            border: 1px solid var(--primary);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .panel-btn:hover {
            background: rgba(255, 123, 37, 0.4);
            transform: scale(1.1);
        }
        
        /* Common Styles */
        .section-title {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 1rem;
        }
        
        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary-light), var(--primary));
            border-radius: 4px;
        }
        
        /* Plan Selection */
        .plan-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .plan-tabs {
            display: flex;
            background: var(--card-bg);
            border-radius: 12px;
            padding: 5px;
            border: 1px solid var(--border);
        }
        
        .plan-tab {
            flex: 1;
            padding: 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 8px;
            font-weight: 600;
        }
        
        .plan-tab.active {
            background: var(--primary);
            color: white;
        }
        
        .plan-content {
            display: none;
        }
        
        .plan-content.active {
            display: block;
        }
        
        /* Game Selection */
        .games-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .game-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            position: relative;
            overflow: hidden;
        }
        
        .game-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--primary);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform 0.3s ease;
        }
        
        .game-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            border-color: var(--primary-light);
        }
        
        .game-card:hover::before {
            transform: scaleY(1);
        }
        
        .game-card.selected {
            border: 1px solid var(--primary);
            background: rgba(255, 123, 37, 0.1);
            box-shadow: 0 5px 15px rgba(255, 123, 37, 0.3);
            animation: pulse 2s infinite;
        }
        
        .game-card.selected::before {
            transform: scaleY(1);
        }
        
        .game-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            border: 2px solid var(--border);
        }
        
        .game-info {
            flex: 1;
        }
        
        .game-name {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }
        
        .game-description {
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 0.5rem;
        }
        
        .game-price {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.2rem;
        }
        
        /* Billing Options */
        .billing-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
            margin: 2rem 0;
        }
        
        .billing-option {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .billing-option:hover {
            border-color: var(--primary-light);
        }
        
        .billing-option.selected {
            border: 1px solid var(--primary);
            background: rgba(255, 123, 37, 0.1);
        }
        
        .billing-option.selected::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 40px 40px 0;
            border-color: transparent var(--primary) transparent transparent;
        }
        
        .billing-option.selected::after {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 5px;
            right: 5px;
            color: white;
            font-size: 12px;
        }
        
        .billing-title {
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }
        
        .billing-price {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
        }
        
        .billing-cycle {
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        .discount-badge {
            background: var(--discount);
            color: var(--dark);
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
        }
        
        /* Order Summary */
        .order-summary {
            background: var(--card-bg);
            border-radius: 14px;
            padding: 1.8rem;
            margin-bottom: 2rem;
            border: 1px solid var(--border);
            position: relative;
        }
        
        .order-summary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
        }
        
        .summary-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
        }
        
        .summary-table td {
            padding: 1rem 0;
            border-bottom: 1px solid var(--border);
        }
        
        .summary-table td:last-child {
            text-align: right;
            font-weight: 500;
        }
        
        .total-row {
            font-weight: 700;
            font-size: 1.3rem;
        }
        
        /* Form Elements */
        .form-group {
            margin-bottom: 1.8rem;
        }
        
        .form-label {
            display: block;
            margin-bottom: 0.8rem;
            font-size: 1rem;
            color: var(--light);
            font-weight: 500;
        }
        
        .form-input {
            width: 100%;
            padding: 1.1rem;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: var(--darker);
            color: var(--light);
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        
        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 123, 37, 0.2);
        }
        
        /* Country Selection */
        .country-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 0.8rem;
            margin: 1.5rem 0;
        }
        
        .country-btn {
            padding: 0.8rem;
            border-radius: 8px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            color: var(--light);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }
        
        .country-btn i {
            font-size: 1.5rem;
        }
        
        .country-btn.selected {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        /* Card Payment */
        .card-payment {
            background: var(--card-bg);
            border-radius: 14px;
            padding: 1.8rem;
            margin: 2rem 0;
            border: 1px solid var(--border);
            position: relative;
        }
        
        .card-payment::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }
        
        .card-row {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .card-number {
            flex: 1;
            position: relative;
        }
        
        .card-number i {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #1a1f71;
        }
        
        .card-expiry, .card-cvc {
            flex: 1;
            position: relative;
        }
        
        .card-cvc i {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
        }
        
        /* Benefits Section */
        .benefits-section {
            background: var(--card-bg);
            border-radius: 14px;
            padding: 1.8rem;
            margin: 2.5rem 0;
            border: 1px solid var(--border);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin-top: 1.8rem;
        }
        
        .benefit-card {
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
            padding: 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover {
            background: rgba(255, 123, 37, 0.1);
            transform: translateY(-3px);
        }
        
        .benefit-icon {
            color: var(--primary);
            font-size: 1.8rem;
            min-width: 40px;
            text-align: center;
        }
        
        .benefit-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .benefit-desc {
            font-size: 0.95rem;
            color: var(--gray);
        }
        
        /* Security Section */
        .security-section {
            background: var(--card-bg);
            border-radius: 14px;
            padding: 1.8rem;
            margin: 2.5rem 0;
            border: 1px solid var(--border);
        }
        
        .security-badge {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-top: 1.8rem;
            padding: 1.5rem;
            background: rgba(255, 123, 37, 0.1);
            border-radius: 12px;
            border-left: 4px solid var(--primary);
            transition: all 0.3s ease;
        }
        
        .security-badge:hover {
            transform: translateX(5px);
        }
        
        .security-icon {
            font-size: 2rem;
            color: var(--primary);
        }
        
        .security-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }
        
        .security-desc {
            font-size: 0.95rem;
            color: var(--gray);
        }
        
        /* Checkboxes */
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .checkbox-input {
            margin-right: 1rem;
            margin-top: 0.3rem;
            accent-color: var(--primary);
        }
        
        .checkbox-label {
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .checkbox-label a {
            color: var(--primary-light);
            text-decoration: none;
        }
        
        .checkbox-label a:hover {
            text-decoration: underline;
        }
        
        /* CTA Button */
        .subscribe-btn {
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            color: white;
            border: none;
            padding: 1.4rem;
            border-radius: 8px;
            width: 100%;
            font-weight: 600;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 2.5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .subscribe-btn::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.1) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: rotate(30deg);
            transition: all 0.3s;
        }
        
        .subscribe-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 123, 37, 0.3);
        }
        
        .subscribe-btn:hover::after {
            left: 100%;
        }
        
        .subscribe-btn:active {
            transform: translateY(1px);
        }
           /* Footer */
        .app-footer {
            text-align: center;
            padding: 2rem 0;
            font-size: 0.9rem;
            color: var(--gray);
            border-top: 1px solid var(--border);
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        
        .footer-link {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-link:hover {
            color: var(--primary-light);
        }
        .footer-link i {
            margin-right: 0.5rem;
        }
        
        /* Custom Alert */
        .custom-alert {
            position: fixed;
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--alert-bg);
            color: white;
            padding: 15px 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            border-left: 4px solid var(--primary);
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 10000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .custom-alert.show {
            opacity: 1;
        }
        
        .custom-alert i {
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        /* Plan Features */
        .plan-features {
            margin-top: 1.5rem;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }
        
        .feature-item i {
            color: var(--primary);
        }
        
        /* Animations */
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 123, 37, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(255, 123, 37, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 123, 37, 0); }
        }
        
        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            .split-container {
                flex-direction: column;
            }
            
            .left-panel, .right-panel {
                width: 100%;
                padding: 1.5rem;
            }
            
            .left-panel {
                display: none;
                border-right: none;
                border-bottom: 1px solid var(--border);
                position: static;
            }
            
            .left-panel.active {
                display: block;
            }
            
            .panel-controls {
                display: none;
            }
            
            .mobile-nav {
                display: flex;
            }
            
            .billing-options {
                grid-template-columns: 1fr;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            body {
                padding-top: calc(var(--nav-height) + var(--safe-top));
            }
        }
        
        @media (max-width: 768px) {
            .game-card {
                flex-direction: column;
                text-align: center;
            }
            
            .game-info {
                width: 100%;
            }
            
            .country-grid {
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            }
            
            .plan-tabs {
                flex-direction: column;
            }
        }
        
        @media (max-width: 480px) {
            .order-summary,
            .card-payment,
            .benefits-section,
            .security-section {
                padding: 1.2rem;
            }
        }




                .left-panel.active {
            display: block !important;
            animation: slideInLeft 0.4s ease;
        }
        @media (max-width: 1024px) {
            .left-panel {
                display: none;
                position: fixed;
                top: var(--nav-height);
                left: 0;
                bottom: 0;
                width: 100%;
                background: var(--darker);
                z-index: 999;
                overflow-y: auto;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }

            .left-panel.active {
                transform: translateX(0);
                display: block !important;
            }

            .split-container {
                flex-direction: column;
            }

            .right-panel {
                width: 100%;
                padding: 1.5rem;
            }

            .panel-controls {
                display: none;
            }

            body {
                padding-top: calc(var(--nav-height) + var(--safe-top));
            }
        }
        .right-panel.active {
            display: block !important;
            animation: slideInRight 0.4s ease;
        }

        @keyframes slideInLeft {
            from { transform: translateX(-100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

