/* Dark theme base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0f;
    background-image:
        linear-gradient(rgba(10, 10, 15, 0.7), rgba(10, 10, 15, 0.7)),
        url('/static/images/Gemini_Generated_Image_cv2x92cv2x92cv2x.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
}

.title {
    font-size: 3rem;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.subline {
    font-size: 1rem;
    color: #888;
}

/* CTA Button */
.cta-section {
    text-align: center;
    margin: 3rem 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #0a0a0f;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

/* Carousel */
.carousel {
    margin: 3rem 0;
    position: relative;
}

.carousel-slides {
    overflow: hidden;
}

.slide {
    display: none;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
}

.slide.active {
    display: block;
}

.slide p {
    font-size: 1.3rem;
    font-style: italic;
    color: #ccc;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 0.5rem;
}

.carousel-nav button {
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1.2rem;
}

.carousel-nav button:hover {
    background: rgba(0, 255, 136, 0.4);
}

.carousel-dots {
    text-align: center;
    margin-top: 1rem;
}

.carousel-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.carousel-dots .dot.active {
    background: #00ff88;
}

/* Must Follow Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup-card {
    background: #0a0a0f;
    border: 1px solid #00ff88;
    border-radius: 8px;
    padding: 2rem;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #888;
    font-size: 1.5rem;
    cursor: pointer;
}

.popup-close:hover {
    color: #fff;
}

.popup-card h2 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.popup-card p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.popup-buttons {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-primary {
    background: #00ff88;
    color: #0a0a0f;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.btn-secondary {
    background: transparent;
    color: #00ff88;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border: 1px solid #00ff88;
    border-radius: 4px;
}

/* Verified Page */
.verified-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.success-card {
    background: #0a0a0f;
    border: 1px solid #00ff88;
    border-radius: 8px;
    padding: 1.5rem 3rem 3rem 3rem;
    text-align: center;
    max-width: 500px;
}

.success-icon {
    font-size: 4rem;
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.success-card h1 {
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.username {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.referral-section {
    background: rgba(0, 255, 136, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.referral-section h2 {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 1.25rem;
}

.referral-link-box {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.referral-link-box input {
    flex: 1;
    padding: 0.5rem;
    background: #0a0a0f;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.copy-btn {
    background: #00ff88;
    color: #0a0a0f;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
}

.referral-count {
    color: #888;
    font-size: 0.9rem;
}

.share-btn {
    display: inline-block;
    background: #00ff88;
    color: #0a0a0f;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
    font-weight: bold;
}

.watching-text {
    margin-top: 1.5rem;
    color: #00ff88;
    font-style: italic;
    opacity: 0.8;
}

.next-steps {
    text-align: left;
}

.next-steps h3 {
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.next-steps ul {
    color: #888;
    padding-left: 1.5rem;
}

.next-steps li {
    margin: 0.5rem 0;
}
