/* style.css for SIXMIXES */

:root {
    --accent: #FFD700; 
    --cyber-blue: #00f2ff;
    --cyber-purple: #bc13fe;
    --cyber-pink: #ff003c;
    --font-header: 'Bebas Neue', sans-serif;
    --font-tech: 'Rajdhani', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-tech);
    background-color: #050505;
    /* Grid Texture */
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a1a1a' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    overflow-x: hidden;
}

/* --- PARALLAX STAR ENGINE --- */
#star-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    z-index: -1; 
    pointer-events: none;
    overflow: hidden;
    /* Removed opacity here, handled in JS layers */
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    will-change: transform; /* Hardware Acceleration */
}

/* TYPOGRAPHY */
.font-header { font-family: var(--font-header); }
.font-tech { font-family: var(--font-tech); }

.section-title {
    font-family: var(--font-header);
    font-size: 5rem; 
    line-height: 0.85;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}
@media (max-width: 768px) { .section-title { font-size: 3.5rem; } }

.section-title::after { content: '.'; color: var(--accent); }

/* BUTTONS */
.clip-button { clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px); }
.clip-panel { clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px); }

.btn-primary {
    font-family: var(--font-header); font-size: 1.5rem; padding: 1rem 3rem; color: black;
    background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-purple));
    border: none; position: relative; overflow: hidden; display: inline-flex;
    align-items: center; justify-content: center; white-space: nowrap; min-width: 220px;
    text-decoration: none; font-weight: bold; letter-spacing: 0.05em; transition: all 0.3s ease;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}
.btn-primary:hover { filter: brightness(1.2); box-shadow: 0 0 30px rgba(0, 242, 255, 0.4); transform: translateY(-2px); }

.btn-secondary {
    font-family: var(--font-header); font-size: 1.5rem; padding: 1rem 3rem; color: white;
    background-color: rgba(0, 0, 0, 0.6); border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative; overflow: hidden; display: inline-flex; align-items: center;
    justify-content: center; white-space: nowrap; min-width: 220px; text-decoration: none;
    font-weight: bold; letter-spacing: 0.05em; transition: all 0.3s ease;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}
.btn-secondary:hover { border-color: var(--cyber-pink); color: var(--cyber-pink); background-color: black; box-shadow: 0 0 20px rgba(255, 0, 60, 0.3); transform: translateY(-2px); }

/* ANIMATIONS */
@keyframes holo-scan { 0%, 80% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.holo-text {
    background: linear-gradient(110deg, #ffffff 45%, rgba(255, 255, 255, 0.8) 48%, #00f2ff 50%, rgba(255, 255, 255, 0.8) 52%, #ffffff 55%);
    background-size: 200% 100%; -webkit-background-clip: text; background-clip: text;
    color: transparent; animation: holo-scan 4s infinite linear; -webkit-text-fill-color: transparent;
}

@keyframes pulse-fade { 0%, 100% { opacity: 1; border-color: rgba(0, 242, 255, 0.3); } 50% { opacity: 0.6; border-color: rgba(0, 242, 255, 0.8); } }
.system-status-box { animation: pulse-fade 3s infinite ease-in-out; }

.scanlines {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.4) 100%);
    background-size: 100% 4px; z-index: 999; pointer-events: none; opacity: 0.3;
}

/* SCROLLBAR */
#image-carousel::-webkit-scrollbar { height: 8px; }
#image-carousel::-webkit-scrollbar-track { background: #111; border-radius: 4px; }
#image-carousel::-webkit-scrollbar-thumb { background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-purple)); border-radius: 4px; }
#image-carousel::-webkit-scrollbar-thumb:hover { background: var(--cyber-pink); }
#image-carousel { scrollbar-width: thin; scrollbar-color: var(--cyber-blue) #111; }