:root {
    --primary-color: #00ffff;
    --secondary-color: #ff00ff;
    --accent-color: #00ff88;
    --dark-bg: #0a0a0f;
    --darker-bg: #05050a;
    --card-bg: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gradient-primary: linear-gradient(135deg, #00ffff, #ff00ff);
    --gradient-secondary: linear-gradient(135deg, #ff00ff, #00ffff);
    --shadow-glow: 0 0 20px rgba(0, 255, 255, 0.3);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.logo span {
    font-size: 1.2rem;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.logo small {
    font-size: 0.7rem;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.1), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.glitch {
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    animation: glitch 3s infinite;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes glitch {
    0%, 100% { text-shadow: 0 0 10px rgba(0, 255, 255, 0.5); }
    25% { text-shadow: -2px 0 5px rgba(255, 0, 255, 0.5); }
    50% { text-shadow: 2px 0 5px rgba(0, 255, 136, 0.5); }
    75% { text-shadow: -2px 0 5px rgba(0, 255, 255, 0.5); }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin: 1rem 0 2rem;
    color: var(--text-secondary);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: var(--transition);
    box-shadow: var(--shadow-glow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 2px solid var(--primary-color);
    opacity: 0.1;
    animation: float 20s infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: 10%;
    left: 10%;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    bottom: 10%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-50px) rotate(180deg); }
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* About Products Section */
.about-products-section {
    padding: 5rem 0;
    background: var(--darker-bg);
}

.about-products-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-products-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.quality-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--primary-color);
}

.badge i {
    font-size: 2rem;
    color: var(--accent-color);
}

.history-text {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
}

/* Calculator Section */
.calculator-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.calculator-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.calculator-input {
    margin-bottom: 1.5rem;
}

.calculator-input label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.calculator-input input,
.calculator-input select {
    width: 100%;
    padding: 0.8rem;
    background: var(--dark-bg);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
}

.calc-button {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.calc-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.calculator-result {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--dark-bg);
    border-radius: 10px;
    border: 2px solid var(--accent-color);
}

.result-price {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.result-price span {
    color: var(--accent-color);
    font-weight: bold;
}

.result-details {
    text-align: center;
    color: var(--text-secondary);
}

/* Poll Section */
.poll-section {
    padding: 5rem 0;
    background: var(--darker-bg);
}

.poll-container {
    max-width: 700px;
    margin: 0 auto;
}

.poll-option {
    background: var(--card-bg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.poll-option:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.poll-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.poll-label i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.poll-bar {
    background: var(--dark-bg);
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    margin: 0.5rem 0;
}

.poll-progress {
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.5s ease;
}

.poll-percent {
    color: var(--accent-color);
    font-weight: bold;
}

.poll-total {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 255, 255, 0.1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    z-index: 1;
}

.product-badge.premium {
    background: var(--secondary-color);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    padding: 0.8rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.price-period {
    color: var(--text-secondary);
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.btn-add-cart,
.btn-buy-now {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-add-cart {
    background: var(--card-bg);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-add-cart:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.btn-buy-now {
    background: var(--gradient-primary);
    color: white;
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Product Detail Page */
.product-detail-container {
    padding: 100px 0 50px;
    background: var(--dark-bg);
}

.breadcrumb {
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.main-image img {
    width: 100%;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 255, 0.2);
}

.product-badge-detail {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: var(--dark-bg);
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.product-rating {
    margin: 1rem 0;
    color: var(--accent-color);
}

.product-rating i {
    margin-right: 5px;
}

.product-price-detail {
    margin: 2rem 0;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-large {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
}

.old-price-large {
    font-size: 2rem;
    text-decoration: line-through;
    color: var(--text-secondary);
}

.savings-badge,
.value-badge {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-left: 1rem;
}

.product-description-full h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.specs-list,
.features-list {
    list-style: none;
    margin: 1rem 0;
}

.specs-list li,
.features-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.specs-list i,
.features-list i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.vip-notice,
.bonus-info,
.tournament-notice,
.membership-terms {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.tournament-formats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.format-option {
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.membership-comparison {
    margin: 2rem 0;
}

.comparison-table {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.comparison-row.highlight {
    background: rgba(0, 255, 255, 0.1);
}

.comparison-row.savings {
    background: rgba(0, 255, 136, 0.1);
}

.green {
    color: var(--accent-color);
}

.product-actions-detail {
    margin: 2rem 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.quantity-selector button:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.quantity-selector input {
    width: 60px;
    padding: 0.5rem;
    text-align: center;
    background: var(--dark-bg);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    color: var(--text-primary);
}

.btn-add-cart-large,
.btn-buy-now-large {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.btn-add-cart-large {
    background: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-buy-now-large {
    background: var(--gradient-primary);
    color: white;
}

.btn-add-cart-large:hover,
.btn-buy-now-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.product-meta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.meta-item {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.in-stock {
    color: var(--accent-color);
}

/* Cart Page */
.cart-container {
    padding: 100px 0 50px;
    min-height: 80vh;
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.cart-empty i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.btn-continue {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: var(--transition);
}

.btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.cart-items-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.cart-item-image {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
    margin: 1rem 0;
}

.cart-item-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-remove {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-remove:hover {
    background: var(--secondary-color);
    color: white;
}

.cart-summary {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.summary-row.total {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    border-bottom: none;
    margin-top: 1rem;
}

.btn-checkout,
.btn-continue-shopping {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.btn-checkout {
    background: var(--gradient-primary);
    color: white;
}

.btn-continue-shopping {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-checkout:hover,
.btn-continue-shopping:hover {
    transform: translateY(-2px);
}

/* Checkout Page */
.checkout-container {
    padding: 100px 0 50px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.checkout-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: var(--dark-bg);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
}

.btn-submit-order {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit-order:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.order-summary {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.summary-totals {
    margin-top: 1.5rem;
}

.checkout-security {
    background: var(--darker-bg);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
}

.checkout-security i {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Success Page */
.success-container {
    padding: 100px 0 50px;
    min-height: 80vh;
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.success-message {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 2rem 0;
}

.success-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-box {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.info-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.success-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

/* Contact Page */
.contact-header,
.about-header,
.blog-header {
    padding: 120px 0 50px;
    text-align: center;
    background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
}

.contact-header h1,
.about-header h1,
.blog-header h1 {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-container,
.about-container,
.blog-container {
    padding: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 255, 255, 0.1);
    text-align: center;
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-social h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links-large a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links-large a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.contact-form-section {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.contact-hours {
    margin-top: 3rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
}

.contact-hours h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: var(--dark-bg);
    border-radius: 8px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* About Page */
.about-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-intro h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-intro p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.team-member {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.team-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--primary-color);
    margin: 1.5rem 0 0.5rem;
    padding: 0 1rem;
}

.team-role {
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.team-bio {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-values {
    margin-top: 4rem;
}

.about-values h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.value-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-secondary);
}

/* Blog Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-card.featured .blog-image {
    height: 100%;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-content h2 {
    margin-bottom: 1rem;
}

.blog-content h2 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.blog-content h2 a:hover {
    color: var(--accent-color);
}

.blog-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.btn-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.btn-read-more:hover {
    color: var(--accent-color);
}

.blog-sidebar {
    grid-column: 1 / -1;
}

.sidebar-widget {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.sidebar-widget h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 1rem;
}

.category-list a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-radius: 5px;
    transition: var(--transition);
}

.category-list a:hover {
    background: var(--dark-bg);
    color: var(--primary-color);
}

.popular-post {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.popular-post:last-child {
    border-bottom: none;
}

.popular-post img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.popular-post a {
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    margin-bottom: 0.3rem;
}

.post-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    background: var(--dark-bg);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    color: var(--text-primary);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

/* Blog Post Page */
.post-container {
    padding: 100px 0 50px;
}

.post-header {
    text-align: center;
    margin-bottom: 3rem;
}

.post-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-secondary);
}

.post-featured-image {
    margin-bottom: 3rem;
    border-radius: 15px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-content-wrapper {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 3rem;
}

.post-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.post-content .lead {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.post-content h2 {
    color: var(--primary-color);
    margin: 2.5rem 0 1.5rem;
    font-size: 2rem;
}

.post-content h3 {
    color: var(--accent-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.post-content h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.post-content li {
    margin-bottom: 0.8rem;
}

.info-box,
.warning-box {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.warning-box {
    border-left-color: var(--secondary-color);
}

.comparison-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.comparison-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.comparison-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.comparison-table-post {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table-post table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table-post th,
.comparison-table-post td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.comparison-table-post th {
    background: var(--darker-bg);
    color: var(--primary-color);
}

.budget-build {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px solid var(--primary-color);
}

.budget-build h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.step-list {
    counter-reset: step-counter;
    list-style: none;
    margin: 2rem 0;
}

.step-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.monitor-ranking {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.monitor-item {
    display: flex;
    gap: 1.5rem;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.monitor-rank {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.monitor-details h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.monitor-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

.spec {
    background: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.spec.price {
    background: var(--gradient-primary);
    color: white;
    font-weight: bold;
}

.monitor-rating {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    color: var(--accent-color);
}

.resolution-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.resolution-option {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.resolution-option h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.final-recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.recommendation-box {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
}

.recommendation-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin: 3rem 0 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.post-tags a {
    background: var(--card-bg);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    transition: var(--transition);
}

.post-tags a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.post-share {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.post-share h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

.share-btn:hover {
    transform: translateY(-3px);
}

.post-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.author-box {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.author-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-color);
}

.author-box h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.related-posts {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.related-posts h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.related-post-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.related-post-item:hover {
    background: var(--dark-bg);
}

.related-post-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.related-post-item h4 {
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.related-post-item span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.cta-box {
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.cta-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: white;
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cookie-text a {
    color: var(--primary-color);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--gradient-primary);
    color: white;
}

.cookie-reject {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--card-bg);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    box-shadow: var(--shadow-glow);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification.success {
    border-color: var(--accent-color);
}

.notification.error {
    border-color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--card-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .glitch {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-grid,
    .stats-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-grid,
    .checkout-grid,
    .contact-grid,
    .comparison-section,
    .cart-items-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-card.featured {
        grid-template-columns: 1fr;
    }

    .post-content-wrapper {
        grid-template-columns: 1fr;
    }

    .post-sidebar {
        position: static;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cart-summary,
    .order-summary {
        position: static;
    }

    .section-title,
    .page-title {
        font-size: 2rem;
    }

    .post-header h1 {
        font-size: 1.8rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 1rem;
    }

    .glitch {
        font-size: 2rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .product-price .price {
        font-size: 1.5rem;
    }

    .price-large {
        font-size: 2rem;
    }
}