/* Trust5150 Shared Styles */
:root {
    --brand-red: #D6001C;
    --brand-red-dark: #8B0012;
    --brand-red-glow: #FF1A3A;
    --brand-black: #000000;
    --brand-dark-grey: #1a1a1a;
    --brand-grey: #2a2a2a;
    --brand-light-grey: #3a3a3a;
    --brand-white: #ffffff;
    --brand-silver: #C0C0C0;
    --terminal-green: #00ff00;
    --terminal-bg: #0a0a0a;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--brand-black);
    color: var(--brand-white);
    overflow-x: hidden;
    line-height: 1.6;
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 50%, rgba(214, 0, 28, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(214, 0, 28, 0.1) 0%, transparent 50%);
    animation: bgPulse 10s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--brand-grey);
    padding: 1rem 2rem;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.nav-logo {
    height: 50px;
    /* Red and white logo glow - NO BLUE, NO WHITE BOX */
    filter: drop-shadow(0 0 10px var(--brand-red)) brightness(1.2) contrast(1.1);
    animation: logoGlow 3s ease-in-out infinite;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 10px var(--brand-red)) brightness(1.2);
    }
    50% { 
        filter: drop-shadow(0 0 20px var(--brand-red-glow)) brightness(1.3);
    }
}

.nav-brand-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-white);
}

.nav-brand-text span {
    color: var(--brand-red);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--brand-silver);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-red);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--brand-white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--brand-red);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero-logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    /* Red and white logo effect - NO BLUE */
    filter: drop-shadow(0 0 30px var(--brand-red)) brightness(1.2) contrast(1.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1rem;
    /* Red and white gradient - NO BLUE */
    background: linear-gradient(135deg, var(--brand-white), var(--brand-red-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: var(--brand-silver);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
    color: var(--brand-white);
    box-shadow: 0 0 20px rgba(214, 0, 28, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(214, 0, 28, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--brand-white);
    border: 2px solid var(--brand-red);
}

.btn-secondary:hover {
    background: var(--brand-red);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--brand-black);
    padding: 3rem 2rem;
    border-top: 1px solid var(--brand-grey);
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-social a {
    color: var(--brand-silver);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--brand-red);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-logo {
        width: 150px;
        height: 150px;
    }
}
