/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e0d6ff;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    position: relative;
}

/* Video background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Purple overlay */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.85) 50%, rgba(15, 52, 96, 0.85) 100%);
    z-index: -1;
    pointer-events: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background: rgba(74, 20, 140, 0.9);
    color: #ffffff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(148, 0, 211, 0.3);
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

header h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(148, 0, 211, 0.7);
}

/* Desktop Navigation */
.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    color: #e0d6ff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.desktop-nav a:hover {
    color: #ffffff;
    background: rgba(148, 0, 211, 0.3);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(74, 20, 140, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(148, 0, 211, 0.3);
    z-index: 1000;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(148, 0, 211, 0.2);
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    color: #e0d6ff;
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 2rem;
    display: block;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background: rgba(148, 0, 211, 0.3);
    color: #ffffff;
}

/* Hero section */
#hero {
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.8) 0%, rgba(106, 13, 173, 0.8) 100%),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none"/><path d="M0,0 C50,50 50,50 100,0 L100,100 L0,100 Z" fill="rgba(148,0,211,0.1)"/></svg>');
    background-size: cover;
    color: #ffffff;
    text-align: center;
    padding: 6rem 0;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(148, 0, 211, 0.4) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

#hero .container {
    position: relative;
    z-index: 2;
}

#hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(148, 0, 211, 0.8);
}

#hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(148, 0, 211, 0.6);
}

#hero button {
    background: linear-gradient(135deg, #9400d3 0%, #8a2be2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(148, 0, 211, 0.4);
}

#hero button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(148, 0, 211, 0.6);
    background: linear-gradient(135deg, #8a2be2 0%, #9400d3 100%);
}

/* Bidder info styles */
.bidder-info {
    margin: 2rem 0;
}

.bidder-count {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(148, 0, 211, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.bidder-count:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(148, 0, 211, 0.5);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.bidder-count:active {
    transform: translateY(0) scale(1.02);
    box-shadow: 0 4px 15px rgba(148, 0, 211, 0.4);
}

@keyframes glow {
    from {
        box-shadow: 0 4px 15px rgba(148, 0, 211, 0.3);
    }
    to {
        box-shadow: 0 4px 25px rgba(148, 0, 211, 0.6);
    }
}

/* Stripe payment container */
.stripe-payment-container {
    margin-top: 2rem;
}

.stripe-payment-container stripe-buy-button {
    --stripe-color-primary: #9400d3;
    --stripe-color-background: #ffffff;
    --stripe-border-radius: 30px;
    transform: scale(1.1);
    filter: drop-shadow(0 5px 15px rgba(148, 0, 211, 0.4));
}

/* Auction sections */
.auction-section {
    padding: 3rem 0;
    background: rgba(26, 26, 46, 0.8);
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(148, 0, 211, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 0, 211, 0.2);
}

.auction-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #e0d6ff;
    font-size: 2.5rem;
    text-shadow: 0 0 15px rgba(148, 0, 211, 0.7);
}

/* Auction grid */
.auction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.auction-item {
    background: rgba(42, 31, 71, 0.9);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(148, 0, 211, 0.3);
}

.auction-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(148, 0, 211, 0.4);
}

.auction-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #4a148c 0%, #6a0dad 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0d6ff;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(148, 0, 211, 0.8);
}

.auction-details {
    padding: 1.5rem;
}

.auction-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(148, 0, 211, 0.6);
}

.auction-description {
    color: #d8bfd8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.auction-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ff6b6b;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(255, 107, 107, 0.6);
}

.auction-time {
    font-size: 1rem;
    color: #b19cd9;
    margin-bottom: 1rem;
}

.bid-button {
    background: linear-gradient(135deg, #9400d3 0%, #8a2be2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(148, 0, 211, 0.4);
}

.bid-button:hover {
    background: linear-gradient(135deg, #8a2be2 0%, #9400d3 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(148, 0, 211, 0.6);
}

/* Monetization section styles */
.monetization-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.monetization-item {
    background: rgba(148, 0, 211, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(148, 0, 211, 0.3);
    box-shadow: 0 4px 15px rgba(148, 0, 211, 0.2);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.monetization-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(148, 0, 211, 0.4);
}

.monetization-item h3 {
    color: #e0d6ff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(148, 0, 211, 0.5);
}

.monetization-item p {
    color: #d8bfd8;
    margin: 0;
    line-height: 1.6;
}

/* Two column layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

.reasons-column {
    width: 100%;
}

.youtube-column {
    width: 100%;
    position: sticky;
    top: 100px;
}

/* Instagram container (keeping youtube-container class for compatibility) */
.youtube-container {
    background: rgba(148, 0, 211, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(148, 0, 211, 0.3);
    box-shadow: 0 8px 25px rgba(148, 0, 211, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
}

.youtube-container h3 {
    color: #e0d6ff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(148, 0, 211, 0.7);
}

.youtube-container p {
    color: #d8bfd8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.youtube-container iframe {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
    background: white;
}

.youtube-link {
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

.youtube-link a {
    color: #9400d3;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(148, 0, 211, 0.1);
    border: 1px solid rgba(148, 0, 211, 0.3);
}

.youtube-link a:hover {
    background: rgba(148, 0, 211, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(148, 0, 211, 0.3);
}

/* Responsive design for two-column layout */
@media (max-width: 1024px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .youtube-column {
        position: static;
        order: -1;
    }
    
    .youtube-container {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .youtube-container {
        padding: 1.5rem;
    }
    
    .youtube-container iframe {
        height: 350px;
        max-width: 100%;
    }
}

/* About section */
#about {
    padding: 3rem 0;
    background: rgba(26, 26, 46, 0.8);
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(148, 0, 211, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 0, 211, 0.2);
}

#about h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #e0d6ff;
    text-shadow: 0 0 15px rgba(148, 0, 211, 0.7);
}

#about p {
    text-align: center;
    color: #d8bfd8;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Domain stats */
.domain-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background: rgba(148, 0, 211, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(148, 0, 211, 0.3);
    box-shadow: 0 4px 15px rgba(148, 0, 211, 0.2);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(148, 0, 211, 0.4);
}

.stat-item strong {
    color: #e0d6ff;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(148, 0, 211, 0.5);
}

/* Contact form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

/* Google form container */
.google-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    max-width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.google-form-container iframe {
    max-width: 100%;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .google-form-container iframe {
        width: 100%;
        height: 800px;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e0d6ff;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(148, 0, 211, 0.3);
    border-radius: 8px;
    background: rgba(42, 31, 71, 0.6);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9400d3;
    box-shadow: 0 0 15px rgba(148, 0, 211, 0.4);
}

.submit-button {
    background: linear-gradient(135deg, #9400d3 0%, #8a2be2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(148, 0, 211, 0.4);
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(148, 0, 211, 0.6);
    background: linear-gradient(135deg, #8a2be2 0%, #9400d3 100%);
}

/* Stripe payment section */
.stripe-payment-section {
    padding: 3rem 0;
    background: rgba(26, 26, 46, 0.8);
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(148, 0, 211, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 0, 211, 0.2);
    text-align: center;
}

.stripe-payment-section h3 {
    color: #e0d6ff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(148, 0, 211, 0.7);
}

.stripe-button {
    background: linear-gradient(135deg, #9400d3 0%, #8a2be2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(148, 0, 211, 0.4);
}

.stripe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(148, 0, 211, 0.6);
    background: linear-gradient(135deg, #8a2be2 0%, #9400d3 100%);
}

/* Fixed bottom bar */
.fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
    color: white;
    padding: 1rem 0;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(255, 107, 107, 0.4);
}

.fixed-bottom-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bar-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.bar-buttons {
    display: flex;
    gap: 1rem;
}

.bar-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.bar-button:hover {
    background: white;
    color: #ff6b6b;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: rgba(26, 26, 46, 0.9);
    color: #e0d6ff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(148, 0, 211, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    /* Header Mobile Design */
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    header h1 {
        font-size: 1.5rem;
    }
    
    /* Hero Mobile */
    #hero h2 {
        font-size: 2rem;
    }
    
    /* Footer Mobile Design */
    footer {
        padding: 1.5rem 0;
    }
    
    footer p {
        font-size: 0.85rem;
        line-height: 1.4;
        padding: 0 1rem;
    }
    
    /* Fixed Bottom Bar Mobile */
    .fixed-bottom-bar {
        padding: 0.75rem 0;
    }
    
    .fixed-bottom-bar .container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .bar-text {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .bar-buttons {
        gap: 0.75rem;
    }
    
    .bar-button {
        padding: 6px 16px;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    /* General Mobile Improvements */
    .auction-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile devices */
    header h1 {
        font-size: 1.3rem;
    }
    
    #hero h2 {
        font-size: 1.75rem;
    }
    
    #hero p {
        font-size: 1.1rem;
    }
    
    footer p {
        font-size: 0.8rem;
    }
    
    .bar-text {
        font-size: 0.8rem;
    }
    
    .bar-button {
        padding: 5px 12px;
        font-size: 0.8rem;
    }
}
