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

body {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    color: #e0e0ff;
    background-color: #050520;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.highlight {
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    filter: blur(8px);
    opacity: 0.5;
    z-index: -1;
}

/* Background Effects */
.stars, .twinkling {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stars {
    background: #050520 url('https://i.imgur.com/YKY28eT.png') repeat top center;
    z-index: 0;
}

.twinkling {
    background: transparent url('https://i.imgur.com/XYMF4ca.png') repeat top center;
    z-index: 1;
    animation: move-twink-back 200s linear infinite;
}

@keyframes move-twink-back {
    from {background-position: 0 0;}
    to {background-position: -10000px 5000px;}
}

/* Header Styles */
header {
    text-align: center;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.logo {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, #00ffff, #ff00ff, #00ffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(255, 0, 255, 0.3);
    letter-spacing: 4px;
}

.logo-text span {
    display: block;
    font-size: 2rem;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.3) 0%, rgba(255, 0, 255, 0.3) 50%, rgba(0, 0, 0, 0) 70%);
    filter: blur(20px);
    z-index: -1;
    animation: pulse 3s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.tagline {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: flicker 5s linear infinite;
}

@keyframes flicker {
    0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
        opacity: 1;
    }
    20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
        opacity: 0.5;
    }
}

/* Hero Section */
.hero {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 50px;
    background: linear-gradient(135deg, rgba(25, 25, 112, 0.7), rgba(75, 0, 130, 0.7));
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3), 0 0 50px rgba(255, 0, 255, 0.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(0, 255, 255, 0.3) 45%, rgba(0, 255, 255, 0.3) 55%, transparent 60%);
    animation: shine 10s linear infinite;
    pointer-events: none;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.neon-text {
    position: relative;
    padding: 20px;
    border: 2px solid transparent;
    border-image: linear-gradient(90deg, #00ffff, #ff00ff, #00ffff);
    border-image-slice: 1;
    background: rgba(0, 0, 0, 0.3);
}

.neon-text::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff, #00ffff);
    filter: blur(10px);
    z-index: -1;
}

.neon-text p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Video Section */
.video-section {
    padding: 50px 0;
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

.video-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5), 0 0 50px rgba(255, 0, 255, 0.3);
}

.video-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
    z-index: -1;
    border-radius: 15px;
    animation: borderRotate 10s linear infinite;
}

@keyframes borderRotate {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 300% 0%;
    }
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: none;
}

.video-description {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-description p {
    font-size: 1.2rem;
    color: #e0e0ff;
    text-shadow: 0 0 5px rgba(224, 224, 255, 0.5);
}

/* Opinion Section */
.opinion-section {
    padding: 50px 0;
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

.opinion-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.opinion-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.opinion-card {
    flex: 1;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.opinion-card.human {
    background: linear-gradient(135deg, rgba(0, 100, 200, 0.3), rgba(0, 200, 255, 0.3));
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.3);
}

.opinion-card.ai {
    background: linear-gradient(135deg, rgba(200, 0, 200, 0.3), rgba(255, 0, 255, 0.3));
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.opinion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.opinion-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.opinion-card p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    min-height: 80px;
}

.vote-button {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.vote-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.5s ease;
}

.human-vote {
    color: #fff;
    background-color: transparent;
    border: 2px solid #00ffff;
}

.human-vote::before {
    background: linear-gradient(90deg, #00ffff, #0088ff);
    opacity: 0;
}

.human-vote:hover::before {
    opacity: 1;
}

.ai-vote {
    color: #fff;
    background-color: transparent;
    border: 2px solid #ff00ff;
}

.ai-vote::before {
    background: linear-gradient(90deg, #ff00ff, #8800ff);
    opacity: 0;
}

.ai-vote:hover::before {
    opacity: 1;
}

.opinion-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.divider-line {
    width: 2px;
    height: 150px;
    background: linear-gradient(to bottom, #00ffff, #ff00ff);
}

.pulse-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    margin: 10px 0;
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% {
        transform: scale(0.8);
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    }
    100% {
        transform: scale(1.2);
        box-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
    }
}

.results-container {
    max-width: 800px;
    margin: 0 auto;
}

.result-bar {
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    margin-bottom: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.human-result, .ai-result {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    transition: width 1s ease;
}

.human-result {
    background: linear-gradient(90deg, #00ffff, #0088ff);
}

.ai-result {
    background: linear-gradient(90deg, #ff00ff, #8800ff);
}

.result-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #e0e0ff;
}

/* CTA Section */
.cta-section {
    padding: 50px 0;
    text-align: center;
    position: relative;
    margin-bottom: 50px;
    background: linear-gradient(135deg, rgba(25, 25, 112, 0.7), rgba(75, 0, 130, 0.7));
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3), 0 0 50px rgba(255, 0, 255, 0.2);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.comment-form {
    max-width: 800px;
    margin: 0 auto 40px;
}

.comment-form textarea {
    width: 100%;
    height: 120px;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 2px solid transparent;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    resize: none;
    transition: all 0.3s ease;
}

.comment-form textarea:focus {
    outline: none;
    border-image: linear-gradient(90deg, #00ffff, #ff00ff);
    border-image-slice: 1;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.form-footer {
    display: flex;
    gap: 15px;
}

.form-footer input {
    flex: 1;
    padding: 12px 15px;
    border-radius: 10px;
    border: 2px solid transparent;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-footer input:focus {
    outline: none;
    border-image: linear-gradient(90deg, #00ffff, #ff00ff);
    border-image-slice: 1;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.submit-button {
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(90deg, #ff00ff, #00ffff);
}

.share-container {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.share-container p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-button {
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #fff;
}

.share-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.5s ease;
    opacity: 0.8;
}

.share-button:hover::before {
    opacity: 1;
}

.share-button.twitter::before {
    background: linear-gradient(90deg, #1DA1F2, #0077B5);
}

.share-button.facebook::before {
    background: linear-gradient(90deg, #4267B2, #3B5998);
}

.share-button.reddit::before {
    background: linear-gradient(90deg, #FF4500, #FF5700);
}

.share-button.youtube::before {
    background: linear-gradient(90deg, #FF0000, #CC0000);
}

.share-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* YouTube Comment CTA */
.youtube-comment-cta {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.4));
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

.youtube-comment-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 0, 0, 0.4) 45%, rgba(255, 0, 0, 0.4) 55%, transparent 60%);
    animation: shine 10s linear infinite;
    pointer-events: none;
}

.youtube-comment-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
}

.youtube-comment-cta p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #fff;
}

.youtube-button {
    display: inline-block;
    padding: 15px 40px;
    background: #FF0000;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

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

.youtube-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.6);
}

.youtube-button:hover::before {
    left: 100%;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    position: relative;
}

.footer-content {
    position: relative;
    z-index: 2;
}

footer p {
    font-size: 1rem;
    color: #a0a0ff;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #8080ff;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-text {
        font-size: 2.5rem;
    }
    
    .logo-text span {
        font-size: 1.5rem;
    }
    
    .hero h2, .video-section h2, .opinion-section h2, .cta-section h2 {
        font-size: 2rem;
    }
    
    .opinion-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .opinion-divider {
        flex-direction: row;
        width: 80%;
        padding: 10px 0;
    }
    
    .divider-line {
        width: 100%;
        height: 2px;
    }
    
    .form-footer {
        flex-direction: column;
    }
    
    .youtube-comment-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 2rem;
    }
    
    .logo-text span {
        font-size: 1.2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .hero h2, .video-section h2, .opinion-section h2, .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .neon-text p, .video-description p {
        font-size: 1rem;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .share-button {
        width: 80%;
    }
}
