/* Cyberpunk/Glitched Aesthetic */

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

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a1a1a 100%);
    color: #00ffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ff00ff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px #00ffff);
    animation: pulse 2s infinite;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ff00ff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 10px;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: #00ffff;
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    text-shadow: 0 0 5px #00ffff;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background: 
        linear-gradient(45deg, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2300ffff" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
    margin-bottom: 20px;
    letter-spacing: 3px;
    animation: glitch 3s infinite;
}

.hero-description {
    font-size: 1.3rem;
    color: #ff00ff;
    max-width: 800px;
    margin: 0 auto 40px;
    text-shadow: 0 0 5px #ff00ff;
}

.cta-button {
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    color: #000;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    font-family: 'Orbitron', monospace;
}

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

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffff;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 15px #00ffff;
    letter-spacing: 2px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #ff00ff;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.feature-card:hover::before {
    opacity: 1;
    animation: scan 1s ease-in-out;
}

.feature-card:hover {
    border-color: #00ffff;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px #ff00ff);
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    color: #ff00ff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #00ffff;
    opacity: 0.9;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid #ff00ff;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff;
    margin-bottom: 10px;
}

.stat-label {
    color: #ff00ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.9);
    border-left: 4px solid #00ffff;
    padding: 30px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: #ff00ff;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #00ffff;
    font-size: 1.1rem;
}

.testimonial-author {
    color: #ff00ff;
    font-weight: 600;
    text-align: right;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background: rgba(255, 0, 255, 0.05);
    border: 1px solid #ff00ff;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px #00ffff);
}

.team-member h3 {
    color: #00ffff;
    margin-bottom: 10px;
    font-family: 'Orbitron', monospace;
}

.team-member p {
    color: #ff00ff;
    font-style: italic;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.news-item {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #ff00ff;
    padding: 25px;
    transition: all 0.3s ease;
}

.news-item:hover {
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.news-item h3 {
    color: #00ffff;
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
}

.news-item p {
    color: #ff00ff;
    margin-bottom: 15px;
}

.news-item time {
    color: #00ffff;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-item {
    background: rgba(255, 0, 255, 0.1);
    padding: 25px;
    border: 1px solid #ff00ff;
}

.contact-item strong {
    color: #00ffff;
    display: block;
    margin-bottom: 10px;
    font-family: 'Orbitron', monospace;
}

.contact-item p {
    color: #ff00ff;
}

/* Legal Pages */
.legal-page {
    padding: 40px 0;
}

.legal-page h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #00ffff;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 15px #00ffff;
}

.legal-section {
    margin-bottom: 40px;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-left: 4px solid #ff00ff;
}

.legal-section h2 {
    font-family: 'Orbitron', monospace;
    color: #ff00ff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.legal-section p {
    margin-bottom: 15px;
    color: #00ffff;
    line-height: 1.8;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-section li {
    color: #ff00ff;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-section strong {
    color: #00ffff;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 2px solid #ff00ff;
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
}

.footer p {
    color: #00ffff;
    font-family: 'Orbitron', monospace;
}

.footer a {
    color: #ff00ff;
    text-decoration: none;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes glitch {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-2px) skew(-1deg); }
    20% { transform: translateX(2px) skew(1deg); }
    30% { transform: translateX(-1px) skew(-0.5deg); }
    40% { transform: translateX(1px) skew(0.5deg); }
    50% { transform: translateX(0); }
}

@keyframes buttonGlitch {
    0%, 100% { transform: scale(1.05); }
    25% { transform: scale(1.05) skew(1deg); }
    50% { transform: scale(1.05) skew(-1deg); }
    75% { transform: scale(1.05) skew(0.5deg); }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .stats-grid,
    .testimonials-grid,
    .team-grid,
    .news-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card,
    .feature-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .legal-section {
        padding: 20px;
    }
}