* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', 'Rajdhani', sans-serif;
    background: radial-gradient(circle at center, #1a1a2e 0%, #0f0f1e 100%);
    min-height: 100vh;
    padding: 40px 20px;
    color: #fff;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 255, 255, 0.05) 50%, transparent 100%);
    animation: holoSweep 5s linear infinite;
    pointer-events: none;
}

@keyframes holoSweep {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(0, 255, 255, 0.03) 0px, transparent 2px, transparent 4px);
    pointer-events: none;
    animation: holoLines 0.3s linear infinite;
}

@keyframes holoLines {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(4px);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    animation: holoLoad 1s ease-out;
}

@keyframes holoLoad {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateY(45deg);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateY(0deg);
    }
}

header {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 40px;
    background: rgba(0, 255, 255, 0.03);
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 20px;
    position: relative;
    box-shadow: 
        0 0 40px rgba(0, 255, 255, 0.3),
        inset 0 0 40px rgba(0, 255, 255, 0.05);
    animation: holoFrame 1.2s ease-out;
}

header::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(0, 255, 255, 0.6) 25%, 
        transparent 50%, 
        rgba(255, 0, 255, 0.6) 75%, 
        transparent 100%);
    border-radius: 20px;
    animation: holoBorder 4s linear infinite;
    z-index: -1;
}

@keyframes holoBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes holoFrame {
    from {
        opacity: 0;
        transform: translateZ(-100px);
        box-shadow: 0 0 0 rgba(0, 255, 255, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
        box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
    }
}

.logo {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00ffff, #ff00ff, #00ffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    animation: holoText 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
    text-transform: uppercase;
    letter-spacing: 8px;
}

@keyframes holoText {
    0%, 100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
    }
    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.8));
    }
}

h1 {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 25px;
    text-shadow: 
        0 0 10px rgba(0, 255, 255, 0.8),
        0 0 20px rgba(0, 255, 255, 0.5);
    letter-spacing: 3px;
    animation: holoTitle 2s ease-in-out infinite;
}

@keyframes holoTitle {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.warning {
    background: rgba(255, 0, 255, 0.1);
    color: #ff00ff;
    padding: 14px 35px;
    border: 2px solid #ff00ff;
    border-radius: 10px;
    display: inline-block;
    font-weight: 800;
    margin: 25px 0;
    box-shadow: 
        0 0 20px rgba(255, 0, 255, 0.5),
        inset 0 0 20px rgba(255, 0, 255, 0.1);
    animation: holoWarning 1.5s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes holoWarning {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(255, 0, 255, 0.5),
            inset 0 0 20px rgba(255, 0, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            inset 0 0 30px rgba(255, 0, 255, 0.2);
    }
}

.cta-buttons {
    margin: 35px 0;
}

.cta-btn {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    padding: 18px 55px;
    border: 3px solid #00ffff;
    border-radius: 10px;
    display: inline-block;
    font-weight: 800;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 255, 255, 0.5), 
        transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 
        0 0 50px rgba(0, 255, 255, 0.6),
        inset 0 0 30px rgba(0, 255, 255, 0.2);
    transform: translateY(-5px);
}

section {
    background: rgba(0, 255, 255, 0.02);
    padding: 45px;
    margin-bottom: 30px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.2),
        inset 0 0 30px rgba(0, 255, 255, 0.03);
    animation: holoSection 0.8s ease-out backwards;
    transition: all 0.4s ease;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent, 
        #00ffff, 
        transparent);
    animation: holoEdge 2s ease-in-out infinite;
}

@keyframes holoEdge {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

section:hover {
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 
        0 0 50px rgba(0, 255, 255, 0.4),
        inset 0 0 40px rgba(0, 255, 255, 0.05);
    transform: translateY(-5px);
}

section:nth-child(2) { animation-delay: 0.1s; }
section:nth-child(3) { animation-delay: 0.2s; }
section:nth-child(4) { animation-delay: 0.3s; }
section:nth-child(5) { animation-delay: 0.4s; }
section:nth-child(6) { animation-delay: 0.5s; }

@keyframes holoSection {
    from {
        opacity: 0;
        transform: perspective(1000px) rotateX(20deg);
    }
    to {
        opacity: 1;
        transform: perspective(1000px) rotateX(0);
    }
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
    border-bottom: 2px solid rgba(0, 255, 255, 0.4);
    padding-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

h3 {
    font-size: 1.6rem;
    margin: 35px 0 18px;
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.1);
}

.highlight {
    background: rgba(0, 255, 255, 0.15);
    padding: 4px 12px;
    border: 1px solid rgba(0, 255, 255, 0.5);
    border-radius: 5px;
    color: #00ffff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.badge {
    background: rgba(255, 0, 255, 0.15);
    border: 1px solid rgba(255, 0, 255, 0.5);
    padding: 6px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-left: 12px;
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
    text-transform: uppercase;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 35px 0;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

thead {
    background: rgba(0, 255, 255, 0.1);
    border-bottom: 2px solid rgba(0, 255, 255, 0.5);
}

th, td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

th {
    font-weight: 800;
    text-transform: uppercase;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    letter-spacing: 2px;
    font-size: 0.9rem;
}

tbody tr {
    transition: all 0.3s ease;
}

tbody tr:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.faq-item {
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.1);
}

.faq-item:hover {
    border-color: rgba(255, 0, 255, 0.6);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.3);
    transform: translateX(10px);
}

.faq-question {
    padding: 25px;
    font-weight: 800;
    font-size: 1.2rem;
    cursor: pointer;
    background: rgba(255, 0, 255, 0.05);
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
    border-left: 4px solid #ff00ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-answer {
    padding: 25px;
    line-height: 1.9;
    background: rgba(0, 0, 0, 0.2);
}

footer {
    text-align: center;
    padding: 45px;
    margin-top: 60px;
    background: rgba(0, 255, 255, 0.02);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.2),
        inset 0 0 30px rgba(0, 255, 255, 0.03);
}

footer p {
    margin: 12px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

@media (max-width: 768px) {
    body {
        padding: 25px 15px;
    }
    
    header, section, footer {
        padding: 30px 25px;
    }
    
    .logo {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    table {
        font-size: 0.88rem;
    }
    
    th, td {
        padding: 14px;
    }
}