
:root {
    --dark-bg: #121212;
    --dark-surface: #1e1e1e;
    --dark-surface-2: #2d2d2d;
    --primary: #8a2be2;
    --primary-light: #9d44e6;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --danger: #e53935;
    --success: #43a047;
    --warning: #fb8c00;
    --transition-speed: 0.3s;
    --border-radius: 8px;
    --container-width: 1200px;
}


html {
    scroll-behavior: smooth;
}


.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}


.btn {
    padding: 10px 20px;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
    font-size: 14px;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(138, 43, 226, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: rgba(138, 43, 226, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--text-primary);
}

.btn-large {
    padding: 12px 24px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}


.navbar {
    background-color: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary), #a64dff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.main-nav ul {
    display: flex;
    list-style-type: none;
}

.main-nav ul li {
    margin: 0 15px;
}

.main-nav ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: color var(--transition-speed);
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--text-primary);
}

.main-nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.nav-buttons {
    display: flex;
    gap: 10px;
}


.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-dropdown-trigger {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 12px;
    background-color: rgba(138, 43, 226, 0.1);
    border-radius: var(--border-radius);
    transition: all var(--transition-speed);
}

.user-dropdown-trigger:hover {
    background-color: rgba(138, 43, 226, 0.2);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    border: 2px solid var(--primary);
}

.user-name {
    color: var(--text-primary);
    font-weight: 500;
    margin-right: 8px;
}

.user-dropdown-trigger i {
    color: var(--text-secondary);
    font-size: 12px;
    transition: transform var(--transition-speed);
}

.user-dropdown-trigger:hover i {
    transform: translateY(2px);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background-color: var(--dark-surface-1);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-top: 10px;
    display: none;
    z-index: 1001;
    overflow: hidden;
    animation: fadeIn 0.2s ease-out;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-speed);
    background-color: rgba(36, 36, 36, 1.0);
}

.dropdown-item:hover {
    background-color: rgb(54, 17, 88);
    color: var(--text-primary);
}

.dropdown-item i {
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}


.hero {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95), rgba(138, 43, 226, 0.2)), url('https://via.placeholder.com/1920x1080/151515/8a2be2?text=Gaming+Software') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://via.placeholder.com/100/8a2be2/ffffff?text=+') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(45deg, var(--primary), #a64dff, #c26dff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-buttons .btn {
    min-width: 180px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


.stats {
    background-color: var(--dark-surface);
    padding: 70px 0;
    position: relative;
}

.stats::after {
    display: none; 
}

.stats .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    padding: 20px;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary);
    transition: transform 0.3s, color 0.3s;
}

.stat-item:nth-child(2) .stat-icon {
    color: #a64dff;
}

.stat-item:nth-child(3) .stat-icon {
    color: #c26dff;
}

.stat-item:hover .stat-icon {
    transform: scale(1.2) rotate(5deg);
}

.stat-item h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stat-item:nth-child(2) h2 {
    color: #a64dff;
}

.stat-item:nth-child(3) h2 {
    color: #c26dff;
}

.stat-item h2::after {
    font-size: 30px;
    position: absolute;
    top: 0;
    right: -20px;
}

.stat-item p {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}


.products {
    padding: 80px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('https://via.placeholder.com/100/8a2be2/ffffff?text=+') repeat;
    opacity: 0.02;
    pointer-events: none;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
    justify-items: stretch; 
}


@media (min-width: 992px) {    
    .product-grid > *:last-child:nth-child(3n+1):nth-last-child(1) {
        grid-column: 2;
        width: 100%; 
        min-width: 300px; 
        justify-self: center;
    }
}


.centered-product {
    margin: 0 auto;
    width: 100%;
}


.products-remainder-1 > *:last-child {
    grid-column: 2 / 3; 
    width: 100%; 
    justify-self: center;
}


.products-remainder-2 > *:nth-last-child(1),
.products-remainder-2 > *:nth-last-child(2) {
    margin: 0 auto;
}

.loader-container {
    text-align: center;
    padding: 40px 0;
}

.loader {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.product-card {
    background-color: var(--dark-surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    border: 1px solid rgba(138, 43, 226, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 380px; 
    padding-bottom: 60px; 
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
    border: 1px solid rgba(138, 43, 226, 0.3);
}


.product-card:hover .product-image {
    box-shadow: inset 0 0 30px rgba(138, 43, 226, 0.3);
}


.product-image-enhanced {
    filter: drop-shadow(0 0 8px rgba(138, 43, 226, 0.4));
    object-position: center; 
}


.product-card:hover .product-image:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 80%, rgba(138, 43, 226, 0.15));
    pointer-events: none;
}


.image-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary);
    font-size: 32px; 
    z-index: 1;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.status-undetected {
    background-color: var(--success);
    color: white;
}

.status-onupdate {
    background-color: rgb(0, 166, 216);
    color: white;
}


.status-detected {
    background-color: var(--danger);
    color: white;
}

.product-type {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.product-type-corner {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-card .product-image {
    height: 200px; 
    width: 100%; 
    overflow: hidden;
    position: relative;
    background: linear-gradient(to bottom, #1a1a1a, #252525); 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; 
    box-sizing: border-box;
    border-radius: var(--border-radius) var(--border-radius) 0 0; 
}

.product-card .product-image img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center; 
    transition: opacity 0.3s, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    filter: contrast(1.05) drop-shadow(0 4px 8px rgba(0,0,0,0.3)); 
}

.product-card:hover .product-image img {
    transform: scale(1.05); 
    filter: contrast(1.1) brightness(1.05) drop-shadow(0 8px 20px rgba(138, 43, 226, 0.5));
}

.product-details {
    padding: 20px 20px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
}

.product-details h3 {
    margin: 0 0 4px 0;
    font-size: 22px;
    font-weight: 600;
    position: relative;
    padding-bottom: 6px;
}

.product-details h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 40px;
    background: var(--primary);
    border-radius: 2px;
}

.product-description {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 8px 0 0;
    line-height: 1.4;
}


.product-details-link {
    margin-top: auto;
    padding-top: 0;
    width: 100%;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    text-align: center !important;
    width: 100% !important;
}

.product-details-link .details-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 0 auto;
    padding: 8px 20px;
    border-radius: 4px;
    background: linear-gradient(135deg, #9c27b0 0%, #8a2be2 100%);
    display: block;
    width: auto;
    max-width: 180px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(138, 43, 226, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.product-details-link:hover .details-text {
    background: linear-gradient(135deg, #b039c8 0%, #9e4fec 100%);
}

.details-text:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transition: all 0.7s ease;
    z-index: 1;
    opacity: 0;
}

.details-text span,
.details-text i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.product-card:hover .details-text {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.5);
    background: linear-gradient(135deg, #b039c8 0%, #9e4fec 100%);
}

.product-card:hover .details-text:after {
    left: 100%;
    opacity: 1;
}


.product-card:hover .details-text span,
.product-card:hover .details-text i {
    transform: translateX(3px);
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.price-period {
    font-size: 14px;
    color: var(--text-secondary);
}

.original-price {
    font-size: 16px;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-left: 10px;
}

.product-btn {
    padding: 8px 20px;
    font-size: 14px;
    transition: all 0.3s;
}

.product-card:hover .product-btn {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

.tier-select {
    padding: 8px;
    border-radius: var(--border-radius);
    background-color: var(--dark-surface-2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    min-width: 150px;
    max-width: 100%;
    transition: border 0.3s;
}

.tier-select:focus {
    outline: none;
    border-color: var(--primary);
}

.error-message {
    color: var(--danger);
    font-size: 16px;
    margin-top: 10px;
}


.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}


.footer {
    background-color: var(--dark-surface);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--dark-surface-2);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-icons a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease;
    z-index: -1;
}

.social-icons a:hover {
    color: var(--text-primary);
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(138, 43, 226, 0.3);
}

.social-icons a:hover:before {
    transform: scale(1);
}

.social-icons a i {
    position: relative;
    z-index: 1;
}

.footer-section ul {
    list-style-type: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding-left: 0;
    display: inline-block;
}

.footer-section ul li a:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-section ul li a:hover:before {
    width: 100%;
}

.footer-section p i {
    margin-right: 10px;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}


.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal-content {
    background-color: var(--dark-surface);
    margin: 50px auto;
    max-width: 500px;
    width: 90%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(138, 43, 226, 0.2);
    animation: modalFadeIn 0.3s;
    border: 1px solid rgba(138, 43, 226, 0.2);
    overflow: hidden;
}

@keyframes modalFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    70% {
        transform: translateY(5px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, rgba(138, 43, 226, 0.1), rgba(30, 30, 30, 0));
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
}

.close-modal {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition-speed);
}

.close-modal:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 20px 25px;
}


.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--dark-surface-2);
    color: var(--text-primary);
    transition: all var(--transition-speed);
    font-size: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.2);
}

.remember-me,
.terms-checkbox,
.guest-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.remember-me input[type="checkbox"],
.terms-checkbox input[type="checkbox"],
.guest-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.remember-me label,
.terms-checkbox label,
.guest-checkbox label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 14px;
    transition: color var(--transition-speed);
}

.remember-me label:hover,
.terms-checkbox label:hover,
.guest-checkbox label:hover {
    color: var(--text-primary);
}

.remember-me label::before,
.terms-checkbox label::before,
.guest-checkbox label::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    border: 2px solid rgba(138, 43, 226, 0.4);
    border-radius: 4px;
    background-color: var(--dark-surface-2);
    transition: all var(--transition-speed);
}

.remember-me input[type="checkbox"]:checked + label::before,
.terms-checkbox input[type="checkbox"]:checked + label::before,
.guest-checkbox input[type="checkbox"]:checked + label::before {
    background-color: var(--primary);
    border-color: var(--primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.remember-me input[type="checkbox"]:focus + label::before,
.terms-checkbox input[type="checkbox"]:focus + label::before,
.guest-checkbox input[type="checkbox"]:focus + label::before {
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.3);
}


.remember-me label::before,
.terms-checkbox label::before,
.guest-checkbox label::before {
    transform-origin: center;
    transition: transform 0.2s, background-color 0.2s, border-color 0.2s;
}

.remember-me input[type="checkbox"]:checked + label::before,
.terms-checkbox input[type="checkbox"]:checked + label::before,
.guest-checkbox input[type="checkbox"]:checked + label::before {
    transform: scale(1.05);
    animation: checkbox-pop 0.3s ease-in-out;
}

@keyframes checkbox-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1.05); }
}




.payment-options {
    margin: 20px 0;
}

.payment-options h3 {
    margin-bottom: 15px;
}

.payment-method-selection {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-option {
    flex: 1;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background-color: var(--dark-surface-2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-speed);
}

.payment-option input[type="radio"]:checked + label {
    border-color: var(--primary);
    background-color: rgba(138, 43, 226, 0.1);
}

.payment-option label i {
    font-size: 24px;
}

.payment-details {
    padding: 20px;
    background-color: var(--dark-surface-2);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.order-summary {
    background-color: var(--dark-surface-2);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.order-summary h3 {
    margin-bottom: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row.total {
    border-bottom: none;
    font-weight: bold;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}


.page-header {
    background-color: var(--dark-surface);
    padding: 120px 0 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}


.faq-section {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

.faq-search {
    display: flex;
    max-width: 600px;
    margin: 0 auto 30px;
}

.faq-search input {
    flex: 1;
    padding: 15px;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--dark-surface);
    color: var(--text-primary);
}

.faq-search input:focus {
    outline: none;
    border-color: var(--primary);
}

.search-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.category-btn {
    padding: 8px 16px;
    background-color: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-speed);
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--primary);
    color: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--dark-surface);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-speed);
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform var(--transition-speed);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed), padding var(--transition-speed);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px; 
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}


.contact-section {
    padding: 80px 0;
    background-color: var(--dark-surface);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form textarea {
    resize: vertical;
}

#contact-captcha-container {
    margin: 20px 0;
    transition: all 0.3s ease;
}

#contact-captcha-container .captcha-loading {
    background-color: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    width: 100%;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

#contact-captcha-container .captcha-error {
    background-color: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.3);
    width: 100%;
    display: block;
    text-align: center;
    padding: 8px;
}

#contact-captcha-container .captcha-error a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: bold;
}


.cta {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95), rgba(138, 43, 226, 0.8)), url('https://via.placeholder.com/1920x600/151515/8a2be2?text=Get+Started') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://via.placeholder.com/100/8a2be2/ffffff?text=+') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.cta-content .btn {
    padding: 15px 40px;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-content .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.3);
}


.section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 700;
}


#globalNotification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    color: #fff;
    font-weight: 500;
    z-index: 2000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 350px;
}

#globalNotification.visible {
    opacity: 1;
    transform: translateY(0);
}

#globalNotification.success {
    background-color: var(--success);
}

#globalNotification.error {
    background-color: var(--danger);
}

#notificationMessage {
    display: flex;
    align-items: center;
}

#notificationMessage i {
    margin-right: 10px;
    font-size: 18px;
}


@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .stats .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: center;
        max-width: 100%;
        padding: 0 20px;
    }.product-grid .product-card {
        width: 85%;
        max-width: 300px;
        margin: 0 auto;
        min-height: 380px;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        background: var(--dark-surface);
    }
    
    .product-card:hover {
        transform: translateY(-5px) scale(1.01);
        box-shadow: 0 15px 35px rgba(138, 43, 226, 0.25);
    }
    
    
    .products-remainder-1 > *:last-child {
        grid-column: auto;
        max-width: 380px;
        width: 100%;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
      .product-card .product-image {
        height: 180px;
        border-radius: 8px 8px 0 0;
    }
      .product-card .product-details {
        padding: 16px;
    }
    
    .product-card .product-details h3 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .product-card .product-details p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .payment-method-selection {
        flex-direction: column;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
      .product-grid .product-card {
        max-width: 280px;
        min-height: 360px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    }
      .product-card .product-image {
        height: 160px;
        border-radius: 6px 6px 0 0;
    }
      .product-card .product-details {
        padding: 14px;
    }
    
    .product-card .product-details h3 {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .product-card .product-details p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    
    .product-card {
        transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        border: 1px solid rgba(138, 43, 226, 0.15);
    }
    
    .product-card:hover {
        border: 1px solid rgba(138, 43, 226, 0.4);
    }
    
    
    .product-card .product-image {
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
        position: relative;
        overflow: hidden;
    }
    
    .product-card .product-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
        transition: left 0.5s;
    }
    
    .product-card:hover .product-image::before {
        left: 100%;
    }
    
    
    .product-card .product-details h3 {
        color: var(--text-primary);
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    
    .product-card .product-details p {
        color: var(--text-secondary);
        font-weight: 400;
    }
    
    
    .product-badge, .status-badge {
        font-size: 11px;
        padding: 4px 10px;
        border-radius: 12px;
    }
    
    
    .product-card .product-btn {
        position: absolute;
        bottom: 15px;
        left: 20px;
        right: 20px;
        padding: 12px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.2s ease;
    }
    
    .product-card .product-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
    }
}


@media (max-width: 390px) {
    .product-grid {
        padding: 0 8px;
        gap: 18px;
    }
      .product-grid .product-card {
        max-width: 260px;
        min-height: 340px;
        border-radius: 8px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
    }
    
    .product-card .product-image {
        height: 150px;
        border-radius: 5px 5px 0 0;
    }
    
    .product-card .product-details {
        padding: 12px;
    }
    
    .product-card .product-details h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .product-card .product-details p {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    
    .product-card .product-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    
    .product-card .price-info {
        margin-top: 10px;
    }
    
    .product-card .price {
        font-size: 1.1rem;
    }
}


@media (max-width: 1200px) {
    .product-card .product-image {
        height: 200px; 
    }
}

@media (max-width: 768px) {
    .product-card .product-image {
        height: 180px; 
    }
}

@media (max-width: 576px) {
    .product-card .product-image {
        height: 160px; 
    }
}


.features {
    padding: 80px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--dark-surface);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.2);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.details-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 0 auto;
    padding: 8px 20px;
    border-radius: 4px;
    background: linear-gradient(135deg, #9c27b0 0%, #8a2be2 100%);
    display: block;
    width: auto;
    max-width: 180px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(138, 43, 226, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.details-text:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transition: all 0.7s ease;
    z-index: 1;
    opacity: 0;
}

.details-text span,
.details-text i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.product-card:hover .details-text {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.5);
    background: linear-gradient(135deg, #b039c8 0%, #9e4fec 100%);
}

.product-card:hover .details-text:after {
    left: 100%;
    opacity: 1;
}


.product-card:hover .details-text span,
.product-card:hover .details-text i {
    transform: translateX(3px);
}


.details-text {
    display: inline-block !important;
    width: auto !important;
    min-width: 110px !important;
    padding: 10px 20px !important;
    text-align: center !important;
    background: #9c27b0 !important; 
    background: linear-gradient(135deg, #9c27b0 0%, #8a2be2 100%) !important;
    color: white !important;
    font-size: 14px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    margin: 0 auto !important;
}


.product-grid .product-card {
    width: 100%; 
    min-width: 300px; 
}


@media (min-width: 992px) {
    .product-grid .product-card {
        max-width: none; 
    }
}


#explore-btn {
    text-decoration: none;
}


@media (max-width: 768px) {
    .products {
        padding: 60px 0;
    }
    
    .products .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .products {
        padding: 50px 0;
    }
    
    .products .container {
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.9rem;
        margin-bottom: 35px;
    }
}


.epvp-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-surface-2) !important;
}

.epvp-icon img {
    transition: transform 0.3s ease;
}

.epvp-icon:hover img {
    transform: scale(1.2);
}
