:root {
    --primary: #ffffff;
    --accent-pink: #cc1453;
    --accent-blue: #000067;
    --dark-bg: #0f0f1a;
    --card-bg: #1a1a2e;
    --text-light: #f8f9fa;
    --text-muted: #a0a7c5;
    --gradient-start: linear-gradient(135deg, #a71447, #fa0089);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 80px;
    height: 100vh;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(204, 20, 83, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 2rem 0;
}

.sidebar:hover {
    width: 250px;
}

.sidebar:hover .nav-text {
    opacity: 1;
    transform: translateX(0);
}

.nav-item {
    padding: 1rem 1.5rem;
    margin: 0.5rem 0;
    border-radius: 0 30px 30px 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-item:hover {
    background: rgba(204, 20, 83, 0.1);
    transform: translateX(5px);
}

.nav-item.active {
    background: var(--gradient-start);
}

.nav-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 100%;
}

.nav-icon {
    font-size: 1.5rem;
    min-width: 30px;
    text-align: center;
}

.nav-text {
    margin-left: 1rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Main Content */
.main-content {
    margin-left: 80px;
    transition: margin-left 0.3s ease;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at top right, rgba(204, 20, 83, 0.1) 0%, transparent 50%),
                radial-gradient(circle at bottom left, rgba(0, 0, 103, 0.1) 0%, transparent 50%);
    padding: 5rem 0;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent-pink);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
    background: var(--accent-blue);
    width: 6px;
    height: 6px;
    animation-delay: 2s;
    left: 20%;
    top: 30%;
}

.floating-element:nth-child(3) {
    background: var(--primary);
    width: 4px;
    height: 4px;
    animation-delay: 4s;
    left: 80%;
    top: 70%;
}

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

.section {
    padding: 6rem 2rem;
    position: relative;
}

.section:nth-child(even) {
    background: rgba(26, 26, 46, 0.5);
}

.card-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    height: 100%;
}

.card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(204, 20, 83, 0.3);
    border-color: rgba(204, 20, 83, 0.4);
}

.card-image {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-modern:hover .card-image {
    transform: scale(1.05);
}

.gradient-text {
    background: var(--gradient-start);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(204, 20, 83, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-start);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-box {
    position: relative;
    padding: 3rem;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 20px;
    border-left: 4px solid var(--accent-pink);
    margin: 3rem 0;
}

.quote-box::before {
    content: """;
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 5rem;
    font-family: 'Space Mono', monospace;
    color: rgba(204, 20, 83, 0.3);
    line-height: 1;
}

.social-sticky {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    transform: scale(1.1);
    background: var(--gradient-start);
    border-color: transparent;
}

.footer-modern {
    background: var(--card-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(204, 20, 83, 0.2);
}

@media (max-width: 992px) {
    .sidebar {
        width: 250px;
    }
    
    .sidebar .nav-text {
        opacity: 1;
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 250px;
    }
    
    .social-sticky {
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .main-content {
        margin-left: 0;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        border-right: none;
        border-bottom: 1px solid rgba(204, 20, 83, 0.2);
    }
    
    .sidebar:hover {
        width: 100%;
    }
    
    .nav-container {
        display: flex;
        overflow-x: auto;
        padding: 1rem;
    }
    
    .nav-item {
        border-radius: 30px;
        margin: 0 0.25rem;
        flex-shrink: 0;
    }
    
    .social-sticky {
        position: fixed;
        bottom: 2rem;
        top: auto;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
    }
}