/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Fun Header */
.fun-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    text-align: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(218, 255, 1, 0.3);
}

.fun-header p {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: #DAFF01;
    margin: 0;
    font-weight: 500;
    animation: slideInDown 0.8s ease-out;
}

/* Coming Soon Page */
.coming-soon-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000 0%, #001100 50%, #000 100%);
    position: relative;
}

.coming-soon-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 65, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    position: relative;
    z-index: 2;
    max-width: 1600px;
    padding: 0 2rem;
    margin: 0 auto;
}

.main-logo {
    width: 525px;
    height: 525px;
    object-fit: cover;
    border-radius: 50%;
    animation: slideInLeft 1s ease-out;
    flex-shrink: 0;
}

.text-content {
    text-align: center;
    flex: 1;
    max-width: 600px;
}

.main-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #DAFF01;
    animation: slideInUp 1s ease-out 0.3s both;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
    animation: slideInUp 1s ease-out 0.6s both;
    line-height: 1.6;
}


.coming-soon-badge {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #DAFF01, #B8E600);
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: slideInUp 1s ease-out 0.9s both;
    font-family: 'Orbitron', monospace;
}

.coming-soon-badge:hover {
    transform: translateY(-3px);
}

.product-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideInUp 1s ease-out 1.2s both;
}

.view-products-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #DAFF01;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #DAFF01;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
}

.view-products-btn:hover {
    background: #DAFF01;
    color: #000;
    transform: translateY(-3px);
}

.subscription-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #DAFF01, #B8E600);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
}

.subscription-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(218, 255, 1, 0.4);
}

/* Product Preview Section */
.product-preview {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, #001100 0%, #000 100%);
}

.product-preview h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #DAFF01;
    margin-bottom: 3rem;
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.product-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(218, 255, 1, 0.2);
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
    border-color: #DAFF01;
    box-shadow: 0 10px 30px rgba(218, 255, 1, 0.3);
}

.product-image {
    height: 200px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image.mug {
    background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
}

.product-image.tshirt {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
}

.logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.product-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.product-item h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: #DAFF01;
    margin-bottom: 1rem;
}

.product-item p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Products Page Styles */
.products-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #000 0%, #001100 50%, #000 100%);
    padding-top: 100px;
}

.page-header {
    text-align: center;
    padding: 4rem 2rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    color: #DAFF01;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 0;
}

.products-showcase {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.product-item.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(218, 255, 1, 0.2);
}

.product-image.mug-large,
.product-image.tshirt-large {
    height: 400px;
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image.mug-large {
    background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-image.tshirt-large {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo-overlay-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.product-logo-large {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.4));
}

.product-info h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #DAFF01;
    margin-bottom: 1rem;
}

.product-description {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature {
    background: rgba(218, 255, 1, 0.1);
    color: #DAFF01;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(218, 255, 1, 0.3);
}

.price {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #DAFF01;
    font-weight: 900;
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(45deg, #DAFF01, #B8E600);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
}

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

.coming-soon-section {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    margin-top: 2rem;
}

.coming-soon-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #DAFF01;
    margin-bottom: 1rem;
}

.coming-soon-section p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.back-button {
    display: inline-block;
    color: #DAFF01;
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border: 2px solid #DAFF01;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #DAFF01;
    color: #000;
}

/* Subscription Page Styles */
.subscription-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #000 0%, #001100 50%, #000 100%);
    padding-top: 100px;
}

.subscription-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    align-items: stretch;
}

.tier {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(218, 255, 1, 0.2);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tier:hover {
    transform: translateY(-10px);
    border-color: #DAFF01;
    box-shadow: 0 20px 40px rgba(218, 255, 1, 0.2);
}

.tier.popular {
    border-color: #DAFF01;
    box-shadow: 0 0 30px rgba(218, 255, 1, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #DAFF01, #B8E600);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Orbitron', monospace;
}

.tier-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tier-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tier-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #DAFF01;
    margin-bottom: 1rem;
}

.price {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #DAFF01;
    font-weight: 900;
}

.price span {
    font-size: 1rem;
    color: #ccc;
    font-weight: 400;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features li {
    color: #ccc;
    padding: 0.5rem 0;
    font-size: 1rem;
}

.subscribe-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #DAFF01, #B8E600);
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(218, 255, 1, 0.4);
}

.subscribe-btn.popular {
    background: linear-gradient(45deg, #B8E600, #A3D600);
}

.top-products {
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
}

.top-products h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #DAFF01;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(218, 255, 1, 0.2);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #DAFF01;
}

.product-icon {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon svg {
    transition: all 0.3s ease;
}

.product-card:hover .product-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(218, 255, 1, 0.5));
}

.product-card h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #DAFF01;
    margin-bottom: 1rem;
}

.product-card p {
    color: #ccc;
    font-size: 0.95rem;
}

.subscription-benefits {
    padding: 4rem 2rem;
    text-align: center;
}

.subscription-benefits h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #DAFF01;
    margin-bottom: 3rem;
}

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

.benefit {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(218, 255, 1, 0.2);
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    border-color: #DAFF01;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon svg {
    transition: all 0.3s ease;
}

.benefit:hover .benefit-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(218, 255, 1, 0.5));
}

.benefit h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: #DAFF01;
    margin-bottom: 1rem;
}

.benefit p {
    color: #ccc;
    font-size: 1rem;
}

.cta-section {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #001100 0%, #000 100%);
}

.cta-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #DAFF01;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Social Footer */
.social-footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(218, 255, 1, 0.2);
}

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

.social-link {
    color: #DAFF01;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(218, 255, 1, 0.3);
    border-radius: 50%;
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: #DAFF01;
    box-shadow: 0 5px 20px rgba(218, 255, 1, 0.4);
}

.copyright {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        justify-content: flex-start;
        padding-top: 2rem;
    }
    
    .text-content {
        text-align: center;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .main-logo {
        width: 150px;
        height: 150px;
        transform: scale(1.2);
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .main-logo {
        width: 120px;
        height: 120px;
        transform: scale(1.1);
    }
    
    .content {
        padding: 0 1rem;
        gap: 1.5rem;
        padding-top: 1rem;
    }
    
    .coming-soon-page {
        padding-top: 2rem;
    }
    
    .fun-header {
        padding: 0.8rem 1rem;
    }
    
    .fun-header p {
        font-size: 0.9rem;
    }
    
    .product-preview h2 {
        font-size: 1.5rem;
    }
    
    .products-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-item {
        padding: 1.5rem;
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-logo {
        width: 60px;
        height: 60px;
    }
    
    /* Products page mobile */
    .page-header h1 {
        font-size: 2rem;
    }
    
    .product-item.featured {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .product-image.mug-large,
    .product-image.tshirt-large {
        height: 250px;
    }
    
    .product-logo-large {
        width: 100px;
        height: 100px;
    }
    
    .product-info h2 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    /* Subscription page mobile */
    .subscription-tiers {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .tier {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-links {
        flex-direction: column;
        align-items: center;
    }
}