/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: white;
    background-color: #000000;
}

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

/* Header */
.header {
    background: #000000;
    color: white;
    border-bottom: 1px solid #0a0a0a;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-left {
    display: flex;
    justify-content: flex-start;
}

.nav-left a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav-left a:hover {
    opacity: 0.8;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    justify-self: center;
}

.logo-image {
    height: 63px;
    width: auto;
    object-fit: contain;
    margin-left: -1rem;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.nav-right {
    display: flex;
    justify-content: flex-end;
}

.nav-right a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav-right a:hover {
    opacity: 0.8;
}

/* Hero section */
.hero {
    background: #1a1a1a;
    color: white;
    text-align: center;
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.video-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.video-click-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    cursor: pointer;
    background: transparent;
    transition: background-color 0.3s ease;
}

.video-click-overlay:hover {
    background: rgba(255, 255, 255, 0.1);
}

.video-overlay .container {
    z-index: 3;
}

.hero h2 {
    font-size: 0rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    font-weight: 100;
    opacity: 0;
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 100;
    letter-spacing: 0.06rem;
}

.play-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    border: none;
    padding: 1rem 2rem;
    border-radius: 2px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.play-btn:hover {
    background: white;
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.play-icon {
    font-size: 1.2rem;
}

.play-text {
    font-weight: 600;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.video-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-video {
    width: 100%;
    height: auto;
    max-height: 90vh;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Products section */
.products {
    padding: 3rem 0;
    background: #000000;
}

.other-products {
    padding: 3rem 0;
    background: #000000;
}

.products h2, .other-products h2 {
    text-align: center;
    font-size: 5vw;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: #0a0a0a;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #1a1a1a;
}

.product-card:hover {
    transform: translateY(-2px);
}

.product-image {
    height: 450px;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

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

.placeholder-img {
    font-size: 3rem;
    opacity: 0.7;
    color: white;
}

.product-info {
    padding: 1rem;
}

.product-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.product-category {
    font-size: 0.8rem;
    color: #7e7e7e;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.sats {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid #1a1a1a;
    cursor: pointer;
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    margin-bottom: 0.1rem;
}

.btn-primary {
    background: #0a0a0a;
    color: white;
}

.btn-primary:hover {
    background: #1a1a1a;
    border-color: #333;
}

.btn-secondary {
    background: #0a0a0a;
    color: white;
}

.btn-secondary:hover {
    background: #1a1a1a;
    border-color: #333;
}

/* Featured product button styling */
.btn-primary.featured {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.btn-primary.featured:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
}

/* Tweets grid styling */
.tweets-wrapper {
    margin: auto;
    max-width: 1240px;
    padding: 9rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1rem;
    justify-items: center;
}

/* Make all links white */
a {
    color: white;
}

a:hover {
    color: #f0f0f0;
}

/* Add vertical space between sections */
.products {
    padding: 6rem 0;
}

.other-products {
    padding: 6rem 0;
}

.tweets-wrapper {
    padding: 12rem 0;
}

.twitter-tweet {
    margin: 0 !important;
    max-width: 400px !important;
    width: 100% !important;
}

/* Testimonials */
.testimonials {
    background: #0a0a0a;
    padding: 2rem 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 400;
    letter-spacing: 0.5px;
}

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

.testimonial {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: white;
}

.testimonial cite {
    color: #ccc;
    font-weight: 500;
}



/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 1.5rem 0;
    border-top: 1px solid #0a0a0a;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-brand, .footer-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-icon, .social-icon {
    font-size: 1rem;
}

.payment-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
}

/* Removed number-go-up styling since we replaced it with follow link */



.tweets-wrapper {
    margin: auto;
    /* max-width: 730px; */
}
.twitter-tweet {
margin:auto;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .products, .testimonials, .payment-methods {
        padding: 2rem 0;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .products h2, .testimonials h2, .payment-methods h2 {
        font-size: 2rem;
    }
    
    .tweets-wrapper {
        grid-template-columns: 1fr;
        padding: 1rem 0;
    }
    
    .twitter-tweet {
        max-width: 100% !important;
    }
} 