:root {
    --color-bg: #050505;
    --color-primary: #3bb3e5;
    /* Sky Blue */
    --color-accent: #e6007e;
    /* Hot Pink */
    --color-text: #ffffff;
    --color-text-dim: #aaaaaa;
    --font-main: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-display: 'Rajdhani', sans-serif;
    /* We will try to import this */
}

/* Fonts loaded via HTML for better performance */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.85)), url('../img/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-text);
    font-family: var(--font-main);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography & Neon Effects */
h1,
h2,
h3 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.text-primary {
    color: var(--color-primary);
}

.text-accent {
    color: var(--color-accent);
}

.neon-text-blue {
    text-shadow: 0 0 5px var(--color-primary), 0 0 10px var(--color-primary);
}

.neon-text-pink {
    text-shadow: 0 0 5px var(--color-accent), 0 0 10px var(--color-accent);
}

.glass-panel {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.text-gradient-main {
    background: linear-gradient(to bottom, #00f2ff 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* Optional: Drop shadow that works with gradient text is tricky, usually filter: drop-shadow(...) */
    filter: drop-shadow(0 0 5px rgba(0, 242, 255, 0.5));
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-family: var(--font-display);
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 4px;
}

.btn:hover {
    background: var(--color-primary);
    color: var(--color-bg);
    box-shadow: 0 0 15px var(--color-primary);
}

.btn-accent {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-accent:hover {
    background: var(--color-accent);
    color: var(--color-bg);
    box-shadow: 0 0 15px var(--color-accent);
}

input[type="text"],
input[type="password"],
input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    color: white;
    font-family: var(--font-main);
}

input:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 5px var(--color-primary);
}

/* Screensaver Specifics */
#screensaver-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: var(--color-bg);
}

.screensaver-item {
    position: absolute;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    max-width: 450px;
    padding: 25px;
    pointer-events: none;

    /* High Contrast Glass Effect */
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(59, 179, 229, 0.4);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.screensaver-item.visible {
    opacity: 1;
}

.twitter-handle {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.content-text {
    font-size: 1.5rem;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}