
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --primary: #3b82f6;
        --primary-dark: #2563eb;
        --secondary: #10b981;
        --dark: #0f172a;
        --dark-light: #1e293b;
        --gray: #64748b;
        --gray-light: #e2e8f0;
        --white: #ffffff;
        --gradient: linear-gradient(135deg, #3b82f6, #10b981);
        --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        color: var(--dark);
        overflow-x: hidden;
        background: #f8fafc;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Navigation (Same as other pages) */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 1rem 0;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--primary);
    }

    .logo-icon {
        font-size: 2rem;
        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
    }

    .nav-menu {
        display: flex;
        align-items: center;
        gap: 2rem;
        list-style: none;
    }

    .nav-link {
        text-decoration: none;
        color: var(--dark);
        font-weight: 500;
        position: relative;
        transition: color 0.3s ease;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

    .nav-cta {
        background: var(--gradient);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        font-weight: 600;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    }

    .nav-cta::after {
        display: none;
    }

    .nav-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
    }

    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: var(--dark);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 3px;
    }

    /* Shop Hero */
    .shop-hero {
        padding: 120px 0 60px;
        position: relative;
        overflow: hidden;
        background: white;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
    }

    .hero-shape-1,
    .hero-shape-2 {
        position: absolute;
        border-radius: 50%;
        filter: blur(100px);
        opacity: 0.15;
    }

    .hero-shape-1 {
        width: 400px;
        height: 400px;
        background: var(--primary);
        top: -200px;
        right: -100px;
        animation: float 15s ease-in-out infinite;
    }

    .hero-shape-2 {
        width: 300px;
        height: 300px;
        background: var(--secondary);
        bottom: -150px;
        left: -100px;
        animation: float 20s ease-in-out infinite reverse;
    }

    .hero-content {
        text-align: center;
        animation: fadeInUp 0.8s ease;
    }

    .hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--dark);
    }

    .gradient-text {
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        color: var(--gray);
        max-width: 600px;
        margin: 0 auto;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Game Selection */
    .game-selection {
        padding: 60px 0;
        background: #f8fafc;
    }

    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 3vw, 2.5rem);
        font-weight: 800;
        margin-bottom: 0.5rem;
        color: var(--dark);
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: var(--gray);
    }

    .game-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        max-width: 1000px;
        margin: 0 auto;
    }

    .game-select-card {
        background: white;
        padding: 2rem;
        border-radius: 20px;
        border: 2px solid var(--gray-light);
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
    }

    .game-select-card.animate {
        opacity: 1;
        transform: translateY(0);
        animation: fadeInUp 0.6s ease;
    }

    .game-select-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

    .game-select-card.active {
        border-color: var(--primary);
        background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
    }

    .game-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        display: inline-block;
        animation: bounce 2s ease-in-out infinite;
    }

    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    .game-name {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 0.5rem;
    }

    .game-desc {
        color: var(--gray);
        font-size: 0.9rem;
    }

    .game-check {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 30px;
        height: 30px;
        background: var(--primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        opacity: 0;
        transform: scale(0);
        transition: all 0.3s ease;
    }

    .game-select-card.active .game-check {
        opacity: 1;
        transform: scale(1);
    }

    /* Server Configuration */
    .server-config {
        padding: 60px 0;
        background: white;
    }

    .config-wrapper {
        display: grid;
        grid-template-columns: 1fr 400px;
        gap: 3rem;
        align-items: start;
    }

    .config-left {
        background: white;
        padding: 2.5rem;
        border-radius: 20px;
        box-shadow: var(--shadow);
        border: 1px solid var(--gray-light);
    }

    .config-title {
        font-size: 2rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 2rem;
    }

    .config-section {
        margin-bottom: 2.5rem;
    }

    .config-section h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 1rem;
    }

    /* Player Slider */
    .config-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .player-display {
        background: var(--gradient);
        color: white;
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .slider-container {
        position: relative;
        margin-bottom: 1rem;
    }

    #playerSlider {
        width: 100%;
        -webkit-appearance: none;
        height: 8px;
        border-radius: 5px;
        background: #e2e8f0;
        outline: none;
        transition: all 0.3s ease;
    }

    #playerSlider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--primary);
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
    }

    #playerSlider::-webkit-slider-thumb:hover {
        transform: scale(1.2);
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.5);
    }

    #playerSlider::-moz-range-thumb {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--primary);
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
    }

    .slider-labels {
        display: flex;
        justify-content: space-between;
        margin-top: 0.5rem;
        font-size: 0.875rem;
        color: var(--gray);
    }

    .slider-info {
        display: flex;
        gap: 2rem;
        margin-top: 1rem;
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        color: var(--gray);
    }

    .info-icon {
        font-size: 1.1rem;
    }

    /* Location Selection */
    .location-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .location-card {
        background: white;
        border: 2px solid var(--gray-light);
        border-radius: 15px;
        padding: 1.5rem;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(20px);
    }

    .location-card.animate {
        opacity: 1;
        transform: translateY(0);
        animation: fadeInUp 0.6s ease;
    }

    .location-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .location-card.active {
        border-color: var(--primary);
        background: linear-gradient(to bottom, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
    }

    .location-flag {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .location-name {
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 0.25rem;
    }

    .location-ping {
        font-size: 0.875rem;
        color: var(--secondary);
    }

    /* Features List */
    .features-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .feature-item {
        display: flex;
        align-items: center;
        padding: 1rem;
        background: #f8fafc;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .feature-item:hover {
        background: #f1f5f9;
    }

    .feature-item input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    .feature-checkbox {
        width: 24px;
        height: 24px;
        border: 2px solid var(--gray-light);
        border-radius: 6px;
        margin-right: 1rem;
        position: relative;
        transition: all 0.3s ease;
    }

    .feature-checkbox::after {
        content: '✓';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-weight: bold;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .feature-item input:checked + .feature-checkbox {
        background: var(--primary);
        border-color: var(--primary);
    }

    .feature-item input:checked + .feature-checkbox::after {
        opacity: 1;
    }

    .feature-text {
        flex: 1;
        color: var(--dark);
        font-weight: 500;
    }

    .feature-badge {
        background: var(--secondary);
        color: white;
        padding: 0.25rem 0.75rem;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
    }

    .feature-price {
        color: var(--gray);
        font-size: 0.9rem;
    }

    /* Server Name Input */
    .server-name-input {
        width: 100%;
        padding: 1rem;
        border: 2px solid var(--gray-light);
        border-radius: 12px;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .server-name-input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .input-hint {
        margin-top: 0.5rem;
        font-size: 0.875rem;
        color: var(--gray);
    }

    /* Price Card */
    .price-card {
        background: white;
        border-radius: 20px;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        border: 2px solid var(--primary);
        position: sticky;
        top: 100px;
    }

    .price-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .price-details {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 2px solid var(--gray-light);
    }

    .detail-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.75rem;
    }

    .detail-label {
        color: var(--gray);
        font-size: 0.9rem;
    }

    .detail-value {
        font-weight: 600;
        color: var(--dark);
    }

    .price-total {
        text-align: center;
        margin-bottom: 2rem;
        padding: 1.5rem;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
        border-radius: 15px;
    }

    .total-label {
        display: block;
        font-size: 0.9rem;
        color: var(--gray);
        margin-bottom: 0.5rem;
    }

    .total-amount {
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 0.25rem;
    }

    .currency {
        font-size: 1.5rem;
        color: var(--primary);
    }

    .amount {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary);
    }

    .price-features {
        margin-bottom: 2rem;
    }

    .included-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        color: var(--gray);
        font-size: 0.9rem;
    }

    .included-icon {
        color: var(--secondary);
        font-weight: bold;
    }

    .order-btn {
        width: 100%;
        padding: 1.25rem;
        background: var(--gradient);
        color: white;
        border: none;
        border-radius: 15px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .order-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
    }

    .btn-icon {
        font-size: 1.3rem;
    }

    .guarantee {
        margin-top: 1rem;
        text-align: center;
        font-size: 0.875rem;
        color: var(--gray);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .guarantee-icon {
        font-size: 1.1rem;
    }

    /* Features Comparison */
    .features-comparison {
        padding: 80px 0;
        background: #f8fafc;
    }

    .comparison-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .comparison-card {
        background: white;
        padding: 2rem;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(20px);
    }

    .comparison-card.animate {
        opacity: 1;
        transform: translateY(0);
        animation: fadeInUp 0.6s ease;
    }

    .comparison-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

    .comp-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        display: inline-block;
    }

    .comparison-card h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 1rem;
    }

    .comparison-card ul {
        list-style: none;
        text-align: left;
    }

    .comparison-card li {
        padding: 0.5rem 0;
        color: var(--gray);
        position: relative;
        padding-left: 1.5rem;
    }

    .comparison-card li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--secondary);
        font-weight: bold;
    }

    /* Footer (Same as other pages) */
    .footer {
        background: var(--dark);
        color: white;
        padding: 80px 0 20px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1.5rem;
        font-weight: bold;
        color: white;
        margin-bottom: 1rem;
    }

    .footer-description {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.8;
    }

    .footer-title {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: white;
    }

    .footer-links {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: white;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.5);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .config-wrapper {
            grid-template-columns: 1fr;
        }

        .price-card {
            position: relative;
            top: auto;
            max-width: 500px;
            margin: 0 auto;
        }
    }

    @media (max-width: 768px) {
        .nav-menu {
            position: fixed;
            top: 70px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 70px);
            background: white;
            flex-direction: column;
            justify-content: flex-start;
            padding: 2rem;
            transition: left 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .nav-menu.active {
            left: 0;
        }

        .nav-link {
            padding: 1rem 0;
            width: 100%;
            display: block;
        }

        .nav-toggle {
            display: flex;
        }

        .shop-hero {
            padding: 100px 0 40px;
        }

        .hero-title {
            font-size: 2rem;
        }

        .game-cards {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .location-grid {
            grid-template-columns: 1fr;
        }

        .comparison-grid {
            grid-template-columns: 1fr;
        }

        .config-left {
            padding: 1.5rem;
        }

        .price-card {
            padding: 1.5rem;
        }
    }

    @media (max-width: 480px) {
        .game-cards {
            grid-template-columns: 1fr;
        }

        .section-title {
            font-size: 1.75rem;
        }

        .config-title {
            font-size: 1.5rem;
        }

        .total-amount .amount {
            font-size: 2rem;
        }

        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }
