:root {
    --bg-color: #0a0a12;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-color: #e0e0e0;
    --accent-color: #00f2ff;
    --accent-secondary: #bd00ff;
    --gradient-main: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Custom cursor */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-color);
    transition: transform 0.2s ease, width 0.2s ease, height 0.2s ease;
}

body:hover .cursor-outline {
    width: 50px;
    height: 50px;
    opacity: 0.5;
}

/* Typography */
h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #a0a0b0;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.highlight {
    color: var(--accent-color);
    font-weight: 500;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(189, 0, 255, 0.1) 0%, transparent 70%);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.subtitle {
    font-size: 1.8rem;
    max-width: 600px;
    margin: 0 auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 0.7;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Sections */
.card-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.card-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.card-section.reverse .container {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.text-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.visual-content {
    flex: 1;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease-out 0.2s;
}

.visual-content.visible {
    opacity: 1;
    transform: scale(1);
}

.icon-box {
    width: 200px;
    height: 200px;
    background: var(--card-bg);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.icon-box:hover {
    transform: translateY(-10px) rotate(5deg);
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(0, 242, 255, 0.2);
}

/* Footer */
footer {
    padding: 4rem 0;
    text-align: center;
    background: darken(var(--bg-color), 5%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    p {
        font-size: 1.2rem;
    }

    .card-section .container,
    .card-section.reverse .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    * {
        cursor: auto;
    }
}

/* Article Styling */
.long-form-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: #c0c0d0;
    text-align: left;
}

.long-form-text p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.long-form-text h3 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

blockquote {
    border-left: 4px solid var(--accent-secondary);
    background: rgba(189, 0, 255, 0.05);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #fff;
}

.toc {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.toc h3 {
    margin-top: 0;
    color: #fff;
}

.toc ul {
    list-style: none;
    padding-left: 0;
}

.toc li {
    margin-bottom: 0.5rem;
}

.toc a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.toc a:hover {
    color: var(--accent-color);
}

.story-box {
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid var(--accent-color);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.story-box h4 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.story-box p {
    color: #e0e0fa;
    font-size: 1.2rem;
}