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

body {
    font-family: 'Rajdhani', 'Exo 2', sans-serif;
    background: #111;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, #ffffff, transparent),
        radial-gradient(1px 1px at 40px 70px, #cccccc, transparent),
        radial-gradient(0.5px 0.5px at 90px 40px, #aaaaaa, transparent),
        radial-gradient(0.5px 0.5px at 130px 80px, #888888, transparent),
        radial-gradient(1px 1px at 160px 30px, #dddddd, transparent),
        radial-gradient(0.5px 0.5px at 200px 20px, #bbbbbb, transparent),
        radial-gradient(1px 1px at 250px 60px, #eeeeee, transparent),
        radial-gradient(0.5px 0.5px at 300px 10px, #999999, transparent),
        radial-gradient(0.5px 0.5px at 50px 120px, #ffffff, transparent),
        radial-gradient(1px 1px at 80px 150px, #cccccc, transparent);
    background-repeat: repeat;
    background-size: 300px 200px;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}



/* Header Styles */
.header {
    text-align: center;
    padding: 20px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.top-nav {
    margin-bottom: 20px;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 4px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: width 0.3s ease;
    z-index: -1;
}

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
}

.nav-link:hover::before {
    width: 100%;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 50px 0;
    padding: 30px 0;
    position: relative;
}





.logo {
    font-family: 'Orbitron', monospace;
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #cccccc, #ffffff, #aaaaaa);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoSway 2s ease-in-out infinite, gradientShift 3s ease-in-out infinite;
    position: relative;
    letter-spacing: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
}



@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes logoSway {
    0%, 100% { transform: rotate(-1deg) translateY(0px); }
    25% { transform: rotate(1deg) translateY(-2px); }
    50% { transform: rotate(-0.5deg) translateY(0px); }
    75% { transform: rotate(0.5deg) translateY(-1px); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}





/* Main Navigation */
.main-nav {
    display: flex;
    justify-content: space-around;
    padding: 30px 20px;
    background: #111;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-section {
    text-align: center;
    min-width: 200px;
}

.section-title {
    color: #ffffff;
    font-family: 'Exo 2', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }
    100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(200, 200, 200, 0.3); }
}



.sub-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sub-link {
    color: #cccccc;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 15px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sub-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: width 0.3s ease;
    z-index: -1;
}

.sub-link:hover {
    color: #ffffff;
    transform: translateX(8px) scale(1.05);
    font-weight: 600;
}

.sub-link:hover::before {
    width: 100%;
}

/* Info Blocks */
.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-block {
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.info-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.info-block:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4),
                0 0 10px rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
}

.info-block:hover::before {
    left: 100%;
}


.info-block h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.info-block:hover h3 {
    transform: translateY(-3px);
}

.info-block ul {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.info-block li {
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.info-block li::before {
    content: "•";
    color: #cccccc;
    position: absolute;
    left: 0;
}


/* Products Section */
.products-section {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-category {
    margin-bottom: 60px;
}

.category-title {
    color: #ffffff;
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
}


.category-subtitle {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-bottom: 30px;
    font-size: 14px;
}

/* Pricing Grid Layout */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.pricing-card {
    flex: 0 0 calc(16.666% - 20px);
    min-width: 200px;
    background: #111;
    border: 2px solid #2a2a2a;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
    background-size: 400% 400%;
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

/* Bottom row - center 3 last cards */
@media (min-width: 769px) {
    .pricing-card.bottom-row {
        flex: 0 0 calc(16.666% - 20px);
    }
    
    .pricing-card.bottom-row:first-of-type {
        margin-left: calc(8.333% + 10px);
    }
}

.pricing-card:hover {
    transform: translateY(-12px) rotate(2deg) scale(1.02);
        border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 
                0 0 20px rgba(255, 255, 255, 0.02),
                inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.pricing-card:hover::before {
    opacity: 0.5;
}

.pricing-card:hover::after {
    width: 300%;
    height: 300%;
}

.pricing-card.popular {
    border-color: #aaaaaa;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
}

/* Featured Plan - 1000 Installs */
.pricing-card.featured-plan {
    transform: scale(1.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05), 
                0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 5;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
}

@keyframes featuredFloat {
    0%, 100% { transform: scale(1.04) translateY(0); }
    50% { transform: scale(1.04) translateY(-5px); }
}

.pricing-card.featured-plan::before {
    opacity: 0.2;
}

.pricing-card.featured-plan:hover {
    transform: scale(1.1) rotate(-2deg) translateY(-15px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05), 
                0 20px 60px rgba(0, 0, 0, 0.7),
                inset 0 0 30px rgba(255, 255, 255, 0.03);
    animation: none;
}

.pricing-card.featured-plan .pricing-quantity {
    font-size: 2rem;
}

.pricing-card.featured-plan .popular-badge {
    font-size: 11px;
    padding: 5px 15px;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    color: #000000;
}

.pricing-card.premium {
    border-color: #cccccc;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
}

.pricing-card.premium:hover {
    border-color: #dddddd;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(45deg, #ff0000, #ff3333);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
    animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-4px) rotate(-3deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-2px) rotate(3deg); }
}

.popular-badge.premium-badge {
    background: linear-gradient(45deg, #ffffff, #dddddd);
    color: #000000;
    box-shadow: 0 3px 12px rgba(255, 255, 255, 0.3);
}

.pricing-header {
    margin-bottom: 15px;
    width: 100%;
}

.pricing-quantity {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 5px 0;
    line-height: 1;
    transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-quantity {
    transform: scale(1.1);
}

.pricing-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

.pricing-price {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-price {
    transform: scale(1.05) translateY(-2px);
}

.price-currency {
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-right: 3px;
}

.price-amount {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.pricing-price.premium-price .price-currency,
.pricing-price.premium-price .price-amount {
    color: #ffffff;
}

.pricing-button {
    width: 100%;
    background: linear-gradient(45deg, #8b5a5a, #9a6b6b) !important;
    color: white;
    border: none;
    padding: 12px 0;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(139, 90, 90, 0.1);
    z-index: 10;
}

.pricing-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.pricing-button:hover {
    background: linear-gradient(45deg, #a67a7a, #b88a8a);
    transform: translateY(-5px) scale(1.05) rotate(1deg);
    box-shadow: 0 8px 25px rgba(166, 122, 122, 0.2),
                0 0 15px rgba(166, 122, 122, 0.1);
}

.pricing-button:hover::before {
    width: 300px;
    height: 300px;
}

.pricing-button:active {
    transform: translateY(-1px) scale(0.98);
}

.pricing-button.premium-btn {
    background: linear-gradient(45deg, #ffffff, #cccccc);
    color: #000000;
}

.pricing-button.premium-btn:hover {
    background: linear-gradient(45deg, #dddddd, #aaaaaa);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.pricing-features {
    width: 100%;
    border-top: 1px solid #2a2a2a;
    padding-top: 15px;
}

.feature-item {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    color: #aaaaaa;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.product-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    font-family: 'Rajdhani', sans-serif;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(255, 107, 107, 0.15),
        inset 0 0 10px rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 107, 107, 0.3);
    background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
}

.product-card:hover::before {
    left: 100%;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.product-logo {
    font-size: 12px;
    color: #666;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-name {
    color: #ffffff;
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.product-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.product-card:hover .product-name::after {
    width: 50%;
}

.product-price {
    color: #4CAF50;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.stars {
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 16px;
}

.rating-count {
    color: #888;
    font-size: 14px;
}

.purchase-btn {
    background: linear-gradient(45deg, #dc3545, #ff6b6b);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.purchase-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.purchase-btn:hover {
    background: linear-gradient(45deg, #c82333, #ff5252);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.5);
}

.purchase-btn:hover::before {
    left: 100%;
}

.purchase-btn:active {
    transform: scale(0.95);
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
}

/* Binance Style Product Card */
.binance-style {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: none;
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.binance-style::before {
    background: radial-gradient(circle, #1a1a1a 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px;
    gap: 25px;
}

.brand-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 140px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-img:hover {
    transform: scale(1.05);
}

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #f0b90b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plug-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.plug-icon {
    font-size: 1.2rem;
    color: #8b5cf6;
}

.plug-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #8b5cf6;
    font-style: italic;
}

.product-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex: 1;
    padding-right: 0;
}

.binance-style .product-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.binance-style .product-price {
    color: #4CAF50;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.binance-style .product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.binance-style .stars {
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 16px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.binance-style .rating-count {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.binance-style .purchase-btn {
    background: linear-gradient(45deg, #dc3545, #ff6b6b);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    width: 120px;
    align-self: flex-end;
    margin-right: 0;
}

.binance-style .purchase-btn:hover {
    background: linear-gradient(45deg, #c82333, #ff5252);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Responsive adjustments for binance style */
@media (max-width: 768px) {
    .product-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .brand-section {
        align-items: center;
    }
    
    .product-info {
        align-items: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-section {
        width: 100%;
        max-width: 300px;
    }
    
    .sub-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        gap: 15px;
        padding: 0 15px;
    }
    
    .pricing-card {
        flex: 0 0 calc(33.333% - 15px);
        min-width: 180px;
    }
    
    
    .pricing-card.featured-plan {
        transform: scale(1.03);
    }
    
    .pricing-card.featured-plan:hover {
        transform: scale(1.05);
    }
    
    .info-blocks {
        grid-template-columns: 1fr;
    }
    
    .logo {
        font-size: 3.5rem;
        letter-spacing: 8px;
        gap: 15px;
    }
    
    
    .logo-section {
        margin: 30px 0 40px 0;
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 15px 10px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        font-size: 2.5rem;
        letter-spacing: 4px;
        gap: 10px;
    }
    
    
    .products-section {
        padding: 20px 10px;
    }
    
    .pricing-grid {
        padding: 0 10px;
        flex-direction: column;
    }
    
    .pricing-card {
        padding: 20px 18px;
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .pricing-card.featured-plan {
        transform: scale(1.01);
        margin: 5px 0;
    }
    
    .pricing-card.featured-plan:hover {
        transform: scale(1.03);
    }
    
    .pricing-quantity {
        font-size: 1.4rem;
    }
    
    .price-amount {
        font-size: 20px;
    }
    
    .price-currency {
        font-size: 12px;
    }
    
    
    .pricing-button {
        font-size: 12px;
        padding: 10px 0;
    }
    
    .feature-item {
        font-size: 11px;
    }
    
    .info-blocks {
        padding: 20px 10px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
