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

body {
    background: #0a0a0a;
    font-family: 'Arial Black', sans-serif;
    overflow-x: hidden;
}

.tv-container {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
    background-size: 400% 400%;
    animation: psychedelic-bg 8s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

.tv-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.03) 0px,
        transparent 1px,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 3px
    );
    pointer-events: none;
    z-index: 1;
}

.tv-screen {
    background: #000;
    border: 8px solid #fff;
    border-radius: 20px;
    box-shadow: 
        0 0 50px rgba(255, 0, 255, 0.8),
        0 0 100px rgba(0, 255, 255, 0.6),
        inset 0 0 50px rgba(255, 255, 0, 0.3);
    max-width: 1200px;
    width: 100%;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.static-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.1) 0px,
            transparent 1px,
            transparent 2px,
            rgba(255, 255, 255, 0.1) 3px
        );
    animation: static-animation 0.2s infinite;
    pointer-events: none;
    z-index: 10;
    opacity: 0.4;
}

@keyframes static-animation {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

@keyframes psychedelic-bg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.main-header {
    text-align: center;
    padding: 40px 20px 20px;
    position: relative;
    z-index: 5;
}

.glitch-text {
    font-size: 4rem;
    font-weight: 900;
    color: #ffff00;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 
        3px 3px 0 #ff00ff,
        -3px -3px 0 #00ffff,
        3px -3px 0 #ff00ff,
        -3px 3px 0 #00ffff;
    animation: glitch 2s infinite;
    position: relative;
    margin-bottom: 10px;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-1 0.5s infinite;
    color: #ff00ff;
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 0.5s infinite;
    color: #00ffff;
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { text-shadow: 3px 3px 0 #ff00ff, -3px -3px 0 #00ffff; }
    25% { text-shadow: -3px 3px 0 #ff00ff, 3px -3px 0 #00ffff; }
    50% { text-shadow: 3px -3px 0 #ff00ff, -3px 3px 0 #00ffff; }
    75% { text-shadow: -3px -3px 0 #ff00ff, 3px 3px 0 #00ffff; }
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(20% 0 30% 0); transform: translate(-2px, 2px); }
    40% { clip-path: inset(50% 0 20% 0); transform: translate(2px, -2px); }
    60% { clip-path: inset(10% 0 60% 0); transform: translate(-2px, -2px); }
    80% { clip-path: inset(80% 0 5% 0); transform: translate(2px, 2px); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(60% 0 10% 0); transform: translate(2px, -1px); }
    40% { clip-path: inset(20% 0 40% 0); transform: translate(-2px, 1px); }
    60% { clip-path: inset(30% 0 30% 0); transform: translate(1px, -2px); }
    80% { clip-path: inset(5% 0 80% 0); transform: translate(-1px, 2px); }
}

.subtitle {
    font-size: 1.5rem;
    color: #ff00ff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 0 #00ffff;
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    from { text-shadow: 2px 2px 0 #00ffff; }
    to { text-shadow: 2px 2px 20px #00ffff, 0 0 30px #00ffff; }
}

.main-content {
    display: flex;
    gap: 40px;
    padding: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.poster-section {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.tv-poster {
    width: 100%;
    border: 4px solid #ffff00;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 60px rgba(255, 0, 255, 0.6);
    transform: perspective(500px) rotateY(5deg);
    transition: all 0.3s ease;
}

.tv-poster:hover {
    transform: perspective(500px) rotateY(-5deg) scale(1.05);
    box-shadow: 
        0 0 50px rgba(255, 255, 0, 1),
        0 0 100px rgba(255, 0, 255, 0.8);
}

.info-section {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.info-box {
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    border: 3px solid #ffff00;
    border-radius: 10px;
    padding: 30px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.conferences-section {
    padding: 40px;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-shadow: 3px 3px 0 #ff00ff;
}

.conferences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.conference-card {
    background: #000;
    border: 3px solid #ff00ff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.conference-card:hover {
    transform: translateY(-10px) rotateZ(2deg);
    box-shadow: 
        0 20px 40px rgba(255, 0, 255, 0.8),
        0 0 30px rgba(0, 255, 255, 0.6);
    border-color: #ffff00;
}

.conference-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #00ffff;
}

.conference-card h3 {
    color: #ffff00;
    padding: 15px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 #ff00ff;
}

@media (max-width: 768px) {
    .glitch-text {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .main-content {
        flex-direction: column;
        padding: 20px;
    }
    
    .conferences-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}