/* RockIdentifier - 8-Bit Crystal Theme */

:root {
    --crystal-pink: rgb(255, 102, 153);
    --crystal-purple: rgb(153, 102, 255);
    --crystal-blue: rgb(102, 179, 255);
    --crystal-cyan: rgb(102, 230, 230);
    --crystal-green: rgb(102, 230, 153);
    --crystal-yellow: rgb(255, 230, 102);
    --pixel-dark: rgb(26, 26, 38);
    --pixel-medium: rgb(38, 38, 51);
    --pixel-light: rgb(51, 51, 64);
}

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

body {
    font-family: 'Space Mono', monospace;
    background: var(--pixel-dark);
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
}

/* Floating Crystals Background */
.crystals-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-crystal {
    position: absolute;
    font-size: 24px;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite, spin 12s linear infinite;
}

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

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--pixel-light);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    color: var(--crystal-cyan);
    text-shadow: 0 0 10px var(--crystal-cyan);
    text-decoration: none;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px var(--crystal-purple);
}

nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.8rem;
    transition: all 0.3s;
}

nav a:hover {
    color: var(--crystal-pink);
    text-shadow: 0 0 10px var(--crystal-pink);
}

/* Content Card */
.content {
    background: linear-gradient(135deg, var(--pixel-light), var(--pixel-medium));
    border-radius: 20px;
    padding: 48px;
    border: 1px solid rgba(153, 102, 255, 0.3);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--crystal-purple), var(--crystal-pink), var(--crystal-blue), var(--crystal-cyan));
}

/* Typography */
h1 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--crystal-purple), var(--crystal-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.updated {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    margin-bottom: 32px;
}

h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.75rem;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--crystal-cyan);
    line-height: 1.6;
}

h3 {
    font-size: 1rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--crystal-pink);
}

p {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

ul {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 24px;
    font-size: 0.9rem;
}

li {
    margin-bottom: 8px;
}

a {
    color: var(--crystal-cyan);
    transition: all 0.3s;
}

a:hover {
    color: var(--crystal-pink);
    text-shadow: 0 0 10px var(--crystal-pink);
}

/* Contact Box */
.contact-box {
    background: rgba(153, 102, 255, 0.15);
    border: 1px solid rgba(153, 102, 255, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
    text-align: center;
}

.contact-box a {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    text-decoration: none;
}

/* FAQ Items */
.faq-item {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(153, 102, 255, 0.3);
    box-shadow: 0 4px 20px rgba(153, 102, 255, 0.1);
}

.faq-item h3 {
    margin-top: 0;
    color: #fff;
    font-size: 0.95rem;
}

.faq-item p {
    margin-bottom: 0;
    color: rgba(255,255,255,0.7);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .content {
        padding: 24px;
    }

    header {
        flex-direction: column;
        gap: 16px;
    }

    nav a {
        margin: 0 10px;
    }

    h1 {
        font-size: 1rem;
    }

    .logo {
        font-size: 0.7rem;
    }
}
