/* Desktop zoom scaling - 80% for PC view only */
@media (min-width: 1024px) {
    html {
        zoom: 0.8;
        -moz-transform: scale(0.8);
        -moz-transform-origin: 0 0;
    }
}

/* Variables & CSS Reset */
:root {
    /* Colors - Cyberpunk Purple Theme */
    --primary: #9D4EDD;
    --primary-hover: #C77DFF;
    --primary-light: rgba(157, 78, 221, 0.1);
    --secondary: #00F5D4;
    --secondary-hover: #00FFF0;
    --secondary-light: rgba(0, 245, 212, 0.1);
    --accent: #FF8500;
    --accent-hover: #FF9E2A;
    --accent-light: rgba(255, 133, 0, 0.1);

    --background-dark: #0A0A1B;
    --background-card: #10101F;
    --background-modal: #16162A;
    --text-primary: #F3F4F6;
    --text-secondary: #B8B8D0;
    --text-tertiary: #7B7B8F;
    --border-color: #2D2D3A;

    --danger: #FF2957;
    --success: #00E676;
    --warning: #FFD600;
    --info: #00B0FF; 

    --gradient-1: linear-gradient(135deg, #9D4EDD, #00F5D4);
    --gradient-2: linear-gradient(135deg, #7B2CBF, #00B0FF);
    --gradient-3: linear-gradient(135deg, #FF8500, #9D4EDD);

    --neon-glow: 0 0 10px rgba(157, 78, 221, 0.5), 0 0 20px rgba(157, 78, 221, 0.3), 0 0 30px rgba(157, 78, 221, 0.2);
    --neon-glow-secondary: 0 0 10px rgba(0, 245, 212, 0.5), 0 0 20px rgba(0, 245, 212, 0.3), 0 0 30px rgba(0, 245, 212, 0.2);
    --neon-glow-accent: 0 0 10px rgba(255, 133, 0, 0.5), 0 0 20px rgba(255, 133, 0, 0.3), 0 0 30px rgba(255, 133, 0, 0.2);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 15px rgba(157, 78, 221, 0.3);
    --shadow-glow-secondary: 0 0 15px rgba(0, 245, 212, 0.3);

    /* Sizes */
    --sidebar-width: 280px;
    --sidebar-collapsed-width: 80px;
    --header-height: 80px;
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 18px;
    --border-radius-xl: 24px;
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    cursor: default; /* Use default cursor */
}

/* Cursor styles for different elements */
a, button, .website-card, .sidebar-item, input[type="submit"], select, .dropdown-btn, label {
    cursor: pointer;
}

input[type="text"], input[type="url"], textarea {
    cursor: text;
}

/* Enhanced Custom Scrollbar - Cyberpunk Style */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background-color: rgba(10, 10, 27, 0.8);
    border-left: 1px solid rgba(157, 78, 221, 0.1);
    background-image: 
        repeating-linear-gradient(
            45deg,
            rgba(157, 78, 221, 0.05),
            rgba(157, 78, 221, 0.05) 1px,
            transparent 1px,
            transparent 6px
        );
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 0;
    border: 1px solid rgba(157, 78, 221, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 245, 212, 0.4);
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--secondary-hover));
    box-shadow: inset 0 0 8px rgba(0, 245, 212, 0.6), 0 0 8px rgba(157, 78, 221, 0.5);
}

::-webkit-scrollbar-corner {
    background-color: var(--background-dark);
}

::-webkit-scrollbar-button {
    display: block;
    height: 4px;
    width: 4px;
    background-color: transparent;
}

/* Layout */
.container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background: transparent;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
    position: fixed;
    height: 100vh;
    z-index: 1000;
    overflow-x: hidden;
    left: 0;
    justify-content: space-between; /* This pushes the footer to the bottom */
}

.sidebar-collapsed {
    width: var(--sidebar-collapsed-width);
}

.sidebar-header {
    padding: var(--spacing-md);
    height: var(--header-height);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    padding: var(--spacing-sm);
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

/* Menu toggle removed as per user request */

.nav-links {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding: var(--spacing-md) 0;
    flex-grow: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    cursor: pointer;
    gap: var(--spacing-sm);
    position: relative;
    margin-bottom: 10px;
    clip-path: polygon(
        calc(0% + 6px) 0%,
        calc(100% - 0px) 0%,
        100% 6px,
        100% calc(100% - 6px),
        calc(100% - 10px) 100%,
        6px 100%,
        0% calc(100% - 6px),
        0% 6px
    );
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(157, 78, 221, 0.08);
    border: 1px solid rgba(157, 78, 221, 0.2);
    overflow: visible;
    backdrop-filter: blur(8px);
}

.nav-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    clip-path: inherit;
}

/* Glowing border line */
.nav-item::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(157, 78, 221, 0.6) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    clip-path: inherit;
    filter: blur(2px);
}

.nav-item:hover::after {
    transform: translateX(100%);
}

/* Circuitry pattern background */
.nav-item .circuit-lines {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, transparent 50%, rgba(157, 78, 221, 0.2) 50%) 0 0 / 8px 1px,
        linear-gradient(0deg, transparent 50%, rgba(157, 78, 221, 0.2) 50%) 0 0 / 1px 8px;
    opacity: 0;
    transition: opacity 0.4s ease;
    mix-blend-mode: overlay;
}

/* Gradient background effect when hovered */
.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: inherit;
}

/* Light sweep effect */
.nav-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0)
    );
    transition: 0.5s;
    z-index: 2;
}

/* Icon container with glow effect */
.nav-icon-glow {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    border-radius: 8px;
    background: rgba(157, 78, 221, 0.1);
    box-shadow: 0 0 8px rgba(157, 78, 221, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-icon-glow:before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(2px);
}

/* Icon styling */
.nav-item i {
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

/* Text label styling */
.nav-item span {
    white-space: nowrap;
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    z-index: 3;
    letter-spacing: 0.8px;
    transform: translateZ(0);
    text-transform: uppercase;
    font-size: 0.85rem;
    position: relative;
    padding-left: 2px;
}



/* Text underline effect */
.nav-item span:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(to right, var(--primary), transparent);
    transition: width 0.3s ease;
}

/* Hover effect for the entire nav item */
.nav-item:hover {
    transform: translateX(12px) scale(1.05);
    background: rgba(157, 78, 221, 0.15);
    border-color: var(--primary);
    box-shadow: 
        0 0 25px rgba(157, 78, 221, 0.3),
        inset 0 0 15px rgba(157, 78, 221, 0.15);
    backdrop-filter: blur(16px);
}

/* Gradient background animation on hover */
.nav-item:hover::before {
    opacity: 0.2;
    animation: glowPulse 2s infinite;
}

/* Circuit pattern animation on hover */
.nav-item:hover .circuit-lines {
    opacity: 1;
    animation: circuitFlow 4s linear infinite;
}

/* Text underline effect on hover */
.nav-item:hover span:after {
    width: 100%;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

@keyframes circuitFlow {
    0% { 
        background-position: 0 0;
        opacity: 0.3;
    }
    50% { opacity: 1; }
    100% { 
        background-position: 40px 40px;
        opacity: 0.3;
    }
}

/* Icon glow container effect on hover */
.nav-item:hover .nav-icon-glow {
    transform: scale(1.1) rotate(5deg);
    background: rgba(157, 78, 221, 0.2);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
}

.nav-item:hover .nav-icon-glow:before {
    opacity: 0.8;
    animation: borderPulse 2s infinite;
}

@keyframes borderPulse {
    0%, 100% { opacity: 0.5; filter: blur(2px); }
    50% { opacity: 0.8; filter: blur(3px); }
}

/* Icon effect on hover */
.nav-item:hover i {
    color: #fff;
    text-shadow: 0 0 15px var(--primary), 0 0 30px var(--primary);
    animation: iconPulse 1.5s infinite alternate;
}

@keyframes iconPulse {
    from { text-shadow: 0 0 15px var(--primary), 0 0 30px var(--primary); }
    to { text-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary), 0 0 20px var(--primary); }
}

/* Text effect on hover */
.nav-item:hover span {
    color: #fff;
    text-shadow: 0 0 8px var(--primary);
    transform: translateX(5px);
    letter-spacing: 1px;
}

/* Active state styling */
.nav-item.active {
    background: rgba(157, 78, 221, 0.2);
    transform: translateX(12px) scale(1.05);
    border-width: 1px;
    border-style: solid;
    border-image: linear-gradient(45deg, var(--primary), var(--secondary)) 1;
    box-shadow: 
        0 0 20px rgba(157, 78, 221, 0.25),
        inset 0 0 15px rgba(157, 78, 221, 0.15);
}

/* Active item gradient background */
.nav-item.active::before {
    opacity: 0.25;
    animation: activeGlow 3s infinite;
}

@keyframes activeGlow {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 0.4; }
}

/* Active item circuit lines */
.nav-item.active .circuit-lines {
    opacity: 0.8;
    animation: activeBgPulse 4s linear infinite;
}

@keyframes activeBgPulse {
    0% { 
        background-position: 0 0;
        opacity: 0.6;
    }
    50% { 
        opacity: 0.8;
        background-position: 20px 20px;
    }
    100% { 
        background-position: 40px 40px;
        opacity: 0.6;
    }
}

/* Active icon glow */
.nav-item.active .nav-icon-glow {
    background: rgba(157, 78, 221, 0.3);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.5);
}

.nav-item.active .nav-icon-glow:before {
    opacity: 0.8;
}

/* Active icon */
.nav-item.active i {
    color: #fff;
    text-shadow: 0 0 15px var(--primary), 0 0 30px var(--primary);
}

/* Active text */
.nav-item.active span {
    color: #fff;
    text-shadow: 0 0 8px var(--primary);
    letter-spacing: 1px;
}

/* Underline for active item */
.nav-item.active span:after {
    width: 100%;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    height: 2px;
    animation: underlinePulse 2s infinite;
}

@keyframes underlinePulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.sidebar-footer {
    padding: var(--spacing-md);
    border-top: 1px solid rgba(157, 78, 221, 0.2);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: auto; /* Push to bottom of sidebar */
    position: relative;
    z-index: 10;
}

/* Add a pulsing glow line to the footer border */
.sidebar-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary), 
        var(--secondary), 
        transparent
    );
    opacity: 0.7;
    filter: blur(1px);
    animation: footerGlow 4s infinite;
}

@keyframes footerGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.contact-btn-sidebar {
    display: flex; /* Visible on desktop now */
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(157, 78, 221, 0.1);
    padding: var(--spacing-sm) var(--spacing-md);
    cursor: pointer;
    margin-bottom: var(--spacing-sm);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Cyberpunk-styled clipped corners */
    clip-path: polygon(
        calc(0% + 6px) 0%,
        calc(100% - 0px) 0%,
        100% 6px,
        100% calc(100% - 6px),
        calc(100% - 10px) 100%,
        6px 100%,
        0% calc(100% - 6px),
        0% 6px
    );
    border: 1px solid rgba(157, 78, 221, 0.3);
    backdrop-filter: blur(4px);
}

/* Light sweep effect on contact button */
.contact-btn-sidebar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0)
    );
    transition: 0.5s;
    z-index: 1;
}

.contact-btn-sidebar:hover::after {
    left: 100%;
}

.contact-btn-sidebar:hover {
    transform: translateY(-3px) scale(1.03);
    background: rgba(157, 78, 221, 0.2);
    border-color: var(--primary);
    box-shadow: 
        0 5px 15px rgba(157, 78, 221, 0.3),
        inset 0 0 10px rgba(157, 78, 221, 0.2);
}

.contact-btn-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 8px;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.4);
}

.contact-btn-sidebar:hover .contact-btn-icon {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.6), 0 0 30px rgba(157, 78, 221, 0.4);
    animation: iconPulse 1.5s infinite alternate;
}

.contact-btn-sidebar span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-btn-sidebar:hover span {
    color: #fff;
    text-shadow: 0 0 8px var(--primary);
    transform: translateX(3px);
    letter-spacing: 1px;
}

.creator-badge-sidebar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(0, 245, 212, 0.1));
    padding: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    
    /* Cyberpunk-styled clipped corners */
    clip-path: polygon(
        calc(0% + 8px) 0%,
        calc(100% - 0px) 0%,
        100% 8px,
        100% calc(100% - 8px),
        calc(100% - 12px) 100%,
        8px 100%,
        0% calc(100% - 8px),
        0% 8px
    );
    border: 1px solid rgba(157, 78, 221, 0.3);
    backdrop-filter: blur(4px);
}

/* Light sweep effect on creator badge */
.creator-badge-sidebar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0)
    );
    transition: 0.5s;
    z-index: 1;
}

.creator-badge-sidebar:hover::after {
    left: 100%;
}

/* Circuit pattern for creator badge */
.creator-badge-sidebar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, transparent 50%, rgba(157, 78, 221, 0.1) 50%) 0 0 / 8px 1px,
        linear-gradient(0deg, transparent 50%, rgba(157, 78, 221, 0.1) 50%) 0 0 / 1px 8px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.creator-badge-sidebar:hover::before {
    opacity: 1;
    animation: circuitFlow 4s linear infinite;
}

.creator-badge-sidebar:hover {
    transform: translateY(-5px) scale(1.03);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(0, 245, 212, 0.2));
    border-color: var(--primary);
    box-shadow: 
        0 10px 20px rgba(157, 78, 221, 0.3),
        inset 0 0 15px rgba(157, 78, 221, 0.15);
}

.creator-logo-sidebar {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.4);
}

.creator-badge-sidebar:hover .creator-logo-sidebar {
    transform: rotate(360deg);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.6), 0 0 30px rgba(157, 78, 221, 0.4);
}

.creator-info-sidebar {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.creator-label-sidebar {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.creator-name-sidebar {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.creator-name-sidebar::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.creator-badge-sidebar:hover .creator-label-sidebar {
    color: var(--text-secondary);
}

.creator-badge-sidebar:hover .creator-name-sidebar {
    color: #fff;
    text-shadow: 0 0 15px rgba(157, 78, 221, 0.5);
}

.creator-badge-sidebar:hover .creator-name-sidebar::after {
    width: 100%;
}

.theme-toggle span,
.settings span {
    white-space: nowrap;
}

/* Main Content */
.content {
    flex: 1;
    padding: var(--spacing-lg);
    margin-left: var(--sidebar-width);
    transition: margin-left var(--transition-normal);
}

.sidebar-collapsed ~ .content {
    margin-left: var(--sidebar-collapsed-width);
}

.content-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    gap: var(--spacing-lg);
    padding-top: var(--spacing-xl);
    width: 100%;
}

.welcome-section {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(157, 78, 221, 0.2) 0%, transparent 70%);
    height: 400px;
}

.cyber-welcome {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
    position: relative;
    overflow: hidden;
    height: 100%;
    perspective: 1000px;
}

/* Neon grid background */
.neon-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(157, 78, 221, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(157, 78, 221, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(0, 245, 212, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 212, 0.03) 1px, transparent 1px);
    background-size: 
        100px 100px,
        100px 100px,
        20px 20px,
        20px 20px;
    transform-style: preserve-3d;
    transform: rotateX(45deg) scale(2);
    animation: grid-flow 20s linear infinite;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

@keyframes grid-flow {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 0 100px, 100px 0, 0 20px, 20px 0;
    }
}

/* Digital particles */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0;
    animation: particle-flow 8s infinite linear;
}

.p1 { top: 20%; left: 10%; animation-delay: 0s; animation-duration: 15s; }
.p2 { top: 70%; left: 20%; animation-delay: 1s; animation-duration: 18s; }
.p3 { top: 40%; left: 70%; animation-delay: 2s; animation-duration: 12s; }
.p4 { top: 80%; left: 50%; animation-delay: 3s; animation-duration: 16s; }
.p5 { top: 30%; left: 85%; animation-delay: 4s; animation-duration: 14s; }
.p6 { top: 60%; left: 30%; animation-delay: 5s; animation-duration: 20s; }
.p7 { top: 10%; left: 60%; animation-delay: 6s; animation-duration: 17s; }
.p8 { top: 50%; left: 80%; animation-delay: 7s; animation-duration: 13s; }

@keyframes particle-flow {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
        box-shadow: 0 0 1px var(--primary);
    }
    20% {
        transform: scale(1) rotate(90deg);
        opacity: 0.8;
        box-shadow: 0 0 5px var(--primary), 0 0 10px var(--secondary);
    }
    80% {
        transform: scale(1.5) rotate(270deg);
        opacity: 0.4;
        box-shadow: 0 0 5px var(--secondary);
    }
    100% {
        transform: scale(0) rotate(360deg);
        opacity: 0;
        box-shadow: 0 0 1px var(--primary);
    }
}

/* Holographic projection */
.holo-display {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
}

.holo-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 245, 212, 0.03) 0px,
        rgba(0, 245, 212, 0.03) 1px,
        transparent 1px,
        transparent 2px
    );
    animation: scanline-move 8s linear infinite;
    opacity: 0.5;
}

@keyframes scanline-move {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}

.holo-flicker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(157, 78, 221, 0.02);
    opacity: 0.1;
    animation: holo-flicker 5s infinite;
}

@keyframes holo-flicker {
    0%, 100% { opacity: 0.1; }
    5% { opacity: 0.3; }
    10% { opacity: 0.1; }
    15% { opacity: 0.2; }
    20% { opacity: 0.1; }
    30% { opacity: 0.3; }
    45% { opacity: 0.1; }
    60% { opacity: 0.3; }
    75% { opacity: 0.1; }
    80% { opacity: 0.2; }
    90% { opacity: 0.1; }
    95% { opacity: 0.3; }
}

.holo-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 245, 212, 0.1) 25%,
        transparent 50%
    );
    opacity: 0;
    animation: holo-glitch 10s infinite;
}

@keyframes holo-glitch {
    0%, 100% { opacity: 0; left: 0; }
    10% { opacity: 0.1; left: -10%; }
    12% { opacity: 0; left: -10%; }
    20% { opacity: 0; left: 0; }
    25% { opacity: 0.1; left: 20%; }
    27% { opacity: 0; left: 20%; }
    75% { opacity: 0; left: 0; }
    80% { opacity: 0.1; left: -20%; }
    82% { opacity: 0; left: -20%; }
    85% { opacity: 0.1; left: 10%; }
    87% { opacity: 0; left: 10%; }
}

/* Power core */
.power-core {
    position: absolute;
    z-index: 2;
    width: 100px;
    height: 100px;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.core-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--secondary), 0 0 40px rgba(0, 245, 212, 0.4);
    animation: core-pulse 3s ease-in-out infinite;
}

.core-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid var(--primary);
    animation: ring-rotate linear infinite;
}

.ring1 {
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    animation-duration: 10s;
    border-top-color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.ring2 {
    width: 75px;
    height: 75px;
    transform: translate(-50%, -50%) rotate(45deg);
    animation-duration: 15s;
    animation-direction: reverse;
    border-left-color: var(--secondary);
    border-right-color: var(--secondary);
}

.ring3 {
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%) rotate(90deg);
    animation-duration: 20s;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

.energy-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 245, 212, 0.1);
    animation: energy-emit 5s ease-out infinite;
}

@keyframes core-pulse {
    0%, 100% {
        opacity: 0.8;
        box-shadow: 0 0 20px var(--secondary), 0 0 40px rgba(0, 245, 212, 0.4);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 30px var(--secondary), 0 0 60px rgba(0, 245, 212, 0.6);
    }
}

@keyframes ring-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes energy-emit {
    0% {
        width: 40px;
        height: 40px;
        opacity: 0.6;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* Title Container */
.title-container {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.cyberpunk-title {
    font-size: 4.5rem;
    font-weight: 800;
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
    position: relative;
    justify-content: center;
    padding: 60px 0 40px;
    text-transform: uppercase;
}

.title-glitch {
    position: relative;
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--primary);
    animation: text-flicker 5s linear infinite;
}

.title-glitch::before,
.title-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.title-glitch::before {
    animation: glitch-effect-1 5s infinite;
    color: var(--primary);
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translate(-2px, -2px);
}

.title-glitch::after {
    animation: glitch-effect-2 2.5s infinite;
    color: var(--secondary);
    clip-path: polygon(0 80%, 100% 20%, 100% 100%, 0 100%);
    transform: translate(2px, 2px);
}

@keyframes text-flicker {
    0%, 100% { opacity: 1; }
    3%, 6% { opacity: 0.8; }
    9% { opacity: 1; }
    30% { opacity: 1; }
    33% { opacity: 0.9; }
    36% { opacity: 1; }
    60% { opacity: 1; }
    63% { opacity: 0.8; }
    66% { opacity: 1; }
}

@keyframes glitch-effect-1 {
    0%, 100% { transform: translate(0); }
    5%, 15%, 25% { transform: translate(-5px, 2px); }
    10%, 20% { transform: translate(5px, -2px); }
    35%, 45% { transform: translate(-3px, 0); }
    40% { transform: translate(3px, 0); }
    50%, 60% { transform: translate(0); }
    70%, 80% { transform: translate(5px, 2px); }
    75%, 85% { transform: translate(-5px, -2px); }
}

@keyframes glitch-effect-2 {
    0%, 100% { transform: translate(0); }
    5%, 15%, 25% { transform: translate(5px, -2px); }
    10%, 20% { transform: translate(-5px, 2px); }
    35%, 45% { transform: translate(3px, 0); }
    40% { transform: translate(-3px, 0); }
    50%, 60% { transform: translate(0); }
    70%, 80% { transform: translate(-5px, -2px); }
    75%, 85% { transform: translate(5px, 2px); }
}

.title-circuit-decoration {
    position: relative;
    width: 100%;
    height: 30px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.circuit-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.node1 { left: 20%; top: 50%; transform: translateY(-50%); }
.node2 { left: 50%; top: 50%; transform: translateY(-50%); }
.node3 { left: 80%; top: 50%; transform: translateY(-50%); }

.circuit-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.line1 { left: 20%; width: 30%; }
.line2 { left: 50%; width: 30%; }
.line3 { width: 60%; left: 20%; animation: line-pulse 3s infinite; }

@keyframes line-pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.4; }
}

/* Status Display */
.status-display {
    position: absolute;
    z-index: 5;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    background: rgba(10, 10, 27, 0.8);
    border: 1px solid var(--primary);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.3);
    padding: 10px;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-radius: 5px;
}

.status-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--secondary);
    animation: status-blink 2s infinite;
}

@keyframes status-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    font-weight: 700;
}

.status-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.status-bar {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
}

.bar-label {
    width: 50px;
    text-align: right;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.bar-track {
    flex: 1;
    height: 5px;
    background: rgba(157, 78, 221, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    animation: fill-animation 5s forwards;
}

.bar-fill.power {
    width: 100%;
    animation: power-surge 5s infinite;
}

.bar-fill.links {
    width: 80%;
    animation: link-activity 3s infinite;
}

.bar-value {
    width: 50px;
    text-align: left;
    color: var(--text-secondary);
    font-family: monospace;
}

@keyframes fill-animation {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes power-surge {
    0%, 100% { width: 95%; }
    50% { width: 100%; }
}

@keyframes link-activity {
    0%, 100% { width: 80%; }
    25% { width: 85%; }
    50% { width: 75%; }
    75% { width: 90%; }
}

.version-tag {
    margin-top: 5px;
    text-align: center;
    font-size: 0.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.tag-bracket {
    color: var(--primary);
    font-weight: bold;
}

.tag-text {
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

/* Data Flow */
.data-flow {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.7;
}

.data-stream {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary), var(--secondary), transparent);
    opacity: 0.5;
}

.ds1 { left: 20%; animation: stream-flow 5s infinite linear; }
.ds2 { left: 50%; animation: stream-flow 7s infinite linear; animation-delay: 2s; }
.ds3 { left: 80%; animation: stream-flow 6s infinite linear; animation-delay: 3s; }

.data-packet {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--secondary);
    transform: translateX(-50%);
    opacity: 0;
}

.p1 { left: 20%; animation: packet-flow 5s infinite linear; }
.p2 { left: 50%; animation: packet-flow 7s infinite linear; animation-delay: 2s; }
.p3 { left: 80%; animation: packet-flow 6s infinite linear; animation-delay: 3s; }

@keyframes stream-flow {
    0% { opacity: 0.2; }
    50% { opacity: 0.6; }
    100% { opacity: 0.2; }
}

@keyframes packet-flow {
    0% { top: -10px; opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { top: 100%; opacity: 0; }
}

/* Neural Network */
.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
}

.neural-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: node-pulse 5s infinite;
}

.n1 { top: 20%; left: 30%; animation-delay: 0s; }
.n2 { top: 70%; left: 40%; animation-delay: 1s; }
.n3 { top: 40%; left: 70%; animation-delay: 2s; }
.n4 { top: 80%; left: 60%; animation-delay: 3s; }
.n5 { top: 30%; left: 50%; animation-delay: 4s; }

.neural-connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform-origin: left center;
    opacity: 0;
    animation: connection-activation 5s infinite;
}

.c1 {
    top: 20%;
    left: 30%;
    width: 40%;
    transform: rotate(30deg);
    animation-delay: 0.5s;
}

.c2 {
    top: 70%;
    left: 40%;
    width: 30%;
    transform: rotate(-15deg);
    animation-delay: 1.5s;
}

.c3 {
    top: 40%;
    left: 70%;
    width: 25%;
    transform: rotate(150deg);
    animation-delay: 2.5s;
}

.c4 {
    top: 30%;
    left: 50%;
    width: 35%;
    transform: rotate(45deg);
    animation-delay: 3.5s;
}

@keyframes node-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 1; }
}

@keyframes connection-activation {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.8; }
}

/* Interaction Hint */
.interaction-hint {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hint-icon {
    width: 15px;
    height: 15px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: relative;
}

.hint-icon::before,
.hint-icon::after {
    content: '';
    position: absolute;
    background: var(--primary);
}

.hint-icon::before {
    width: 2px;
    height: 5px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.hint-icon::after {
    width: 5px;
    height: 2px;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.hint-pulse {
    position: absolute;
    width: 25px;
    height: 25px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: hint-pulse 2s infinite;
}

.hint-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

@keyframes hint-pulse {
    0% { width: 15px; height: 15px; opacity: 0.5; }
    100% { width: 35px; height: 35px; opacity: 0; }
}

.welcome-hologram {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hologram-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}

.hologram-beam {
    position: absolute;
    width: 2px;
    height: 150px;
    background: linear-gradient(to top, rgba(157, 78, 221, 0.8), rgba(0, 245, 212, 0.8));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.5), 0 0 40px rgba(0, 245, 212, 0.5);
    animation: beam-pulse 3s infinite;
}

@keyframes beam-pulse {
    0%, 100% {
        opacity: 0.5;
        height: 150px;
    }
    50% {
        opacity: 0.8;
        height: 180px;
    }
}

.hologram-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hologram-ring {
    position: absolute;
    border: 1px solid rgba(157, 78, 221, 0.5);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0, 245, 212, 0.3);
    animation: ring-expand 4s infinite;
}

.hologram-ring:nth-child(1) {
    animation-delay: 0s;
}

.hologram-ring:nth-child(2) {
    animation-delay: 1s;
}

.hologram-ring:nth-child(3) {
    animation-delay: 2s;
}

@keyframes ring-expand {
    0% {
        width: 50px;
        height: 50px;
        opacity: 0.8;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

.glitch-box {
    position: relative;
    display: inline-block;
    padding: 2rem;
    margin-bottom: 2rem;
    z-index: 5;
}

.circuit-paths {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.circuit-path {
    position: absolute;
    background: var(--primary);
    opacity: 0.5;
    box-shadow: 0 0 5px var(--primary-glow);
}

.path-1 {
    top: 15%;
    left: -10%;
    width: 120%;
    height: 1px;
    animation: circuit-glow 3s infinite alternate;
}

.path-2 {
    bottom: 15%;
    right: -10%;
    width: 120%;
    height: 1px;
    animation: circuit-glow 3s infinite alternate-reverse;
}

.path-3 {
    top: -10%;
    left: 15%;
    width: 1px;
    height: 120%;
    animation: circuit-glow 3s infinite alternate 1s;
}

.path-4 {
    bottom: -10%;
    right: 15%;
    width: 1px;
    height: 120%;
    animation: circuit-glow 3s infinite alternate-reverse 1s;
}

@keyframes circuit-glow {
    0% {
        opacity: 0.2;
        box-shadow: 0 0 2px var(--primary-glow);
    }
    100% {
        opacity: 0.7;
        box-shadow: 0 0 10px var(--primary-glow);
    }
}

.cyber-glitch {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-primary);
    position: relative;
    text-shadow: 
        2px 2px var(--primary),
        -2px -2px var(--secondary);
    animation: textflicker 0.3s infinite;
    mix-blend-mode: screen;
}

.cyber-glitch::before,
.cyber-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.cyber-glitch::before {
    animation: glitch-1 0.4s infinite;
    color: var(--primary);
    transform: translateX(-2px);
}

.cyber-glitch::after {
    animation: glitch-2 0.3s infinite;
    color: var(--secondary);
    transform: translateX(2px);
}

@keyframes textflicker {
    0% { text-shadow: 2px 2px var(--primary), -2px -2px var(--secondary); }
    25% { text-shadow: -2px 2px var(--accent), 2px -2px var(--primary); }
    50% { text-shadow: 2px -2px var(--secondary), -2px 2px var(--accent); }
    75% { text-shadow: -2px -2px var(--primary), 2px 2px var(--secondary); }
    100% { text-shadow: 2px 2px var(--primary), -2px -2px var(--secondary); }
}

.scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.05) 0px,
        rgba(255, 255, 255, 0.05) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    animation: scanlines 8s linear infinite;
}

.noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-radial-gradient(#000 0 0.0001%, #fff 0 0.0002%) 50% 0/2500px 2500px,
        repeating-conic-gradient(#000 0 0.0001%, #fff 0 0.0002%) 50% 50%/2500px 2500px;
    background-blend-mode: difference;
    opacity: 0.05;
    animation: noise 0.5s steps(2) infinite;
}

.cyber-subtitle {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 5;
}

.loading-bar {
    width: 50px;
    height: 2px;
    background: rgba(157, 78, 221, 0.2);
    margin: 0 5px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 50%;
    background: var(--primary);
    box-shadow: 0 0 5px var(--primary-glow);
    position: absolute;
    animation: progress-move 2s linear infinite;
}

@keyframes progress-move {
    0% {
        left: -50%;
    }
    100% {
        left: 100%;
    }
}

.matrix-code-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    opacity: 0.05;
    pointer-events: none;
}

.matrix-code {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(0deg, transparent 0%, rgba(32, 193, 106, 0.2) 50%, transparent 100%),
        url("data:image/svg+xml,%3Csvg width='6' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='0' y='5' font-size='6' fill='%2320c16a'%3E1%3C/text%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='6' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='0' y='5' font-size='6' fill='%2320c16a'%3E0%3C/text%3E%3C/svg%3E");
    background-position: 0% 0%, 2px 0, 4px 2px;
    animation: matrix-code-move 20s linear infinite;
}

@keyframes matrix-code-move {
    0% {
        background-position: 0% 0%, 2px 0, 4px 2px;
    }
    100% {
        background-position: 0% 100%, 2px 500px, 4px 502px;
    }
}

/* New cyber core element */
.cyber-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    z-index: -1;
    opacity: 0.3;
}

.core-inner,
.core-middle,
.core-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.core-inner {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    box-shadow: 0 0 30px var(--secondary);
    animation: core-pulse 4s ease infinite;
}

.core-middle {
    width: 150px;
    height: 150px;
    border: 2px solid rgba(157, 78, 221, 0.5);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
    animation: rotate-slow 20s linear infinite;
}

.core-outer {
    width: 250px;
    height: 250px;
    border: 1px solid rgba(0, 245, 212, 0.3);
    box-shadow: 0 0 15px rgba(0, 245, 212, 0.2);
    animation: rotate-slow 30s linear infinite reverse;
}

@keyframes core-pulse {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 0 0 30px var(--secondary);
    }
    50% {
        opacity: 0.9;
        box-shadow: 0 0 50px var(--secondary), 0 0 80px rgba(0, 245, 212, 0.3);
    }
}

@keyframes rotate-slow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Data streams */
.data-streams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.data-stream {
    position: absolute;
    width: 1px;
    background: linear-gradient(to bottom, 
        transparent, 
        var(--primary),
        var(--secondary),
        transparent
    );
    opacity: 0.5;
    box-shadow: 0 0 8px var(--primary);
    animation: data-stream-flow 10s linear infinite;
}

.stream-1 {
    height: 200px;
    left: 20%;
    top: -200px;
    animation-delay: 0s;
}

.stream-2 {
    height: 170px;
    left: 60%;
    top: -170px;
    animation-delay: 3s;
}

.stream-3 {
    height: 220px;
    left: 80%;
    top: -220px;
    animation-delay: 6s;
}

@keyframes data-stream-flow {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(1000%);
    }
}

/* Holographic projector */
.holo-projector {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
}

.projector-base {
    width: 60px;
    height: 15px;
    background: linear-gradient(to right, 
        rgba(10, 10, 27, 0.9), 
        rgba(22, 22, 42, 0.9)
    );
    border-radius: 8px 8px 0 0;
    border-top: 1px solid rgba(157, 78, 221, 0.6);
    box-shadow: 0 -2px 10px rgba(157, 78, 221, 0.3);
}

.projector-beam {
    width: 100px;
    height: 300px;
    background: linear-gradient(to top, 
        rgba(157, 78, 221, 0.05),
        rgba(0, 245, 212, 0.1)
    );
    border-radius: 50% 50% 0 0 / 80% 80% 0 0;
    filter: blur(5px);
    transform: translateY(-300px);
    opacity: 0.3;
    animation: beam-flicker 4s infinite alternate;
}

@keyframes beam-flicker {
    0%, 100% { opacity: 0.2; width: 90px; }
    25% { opacity: 0.25; width: 95px; }
    50% { opacity: 0.3; width: 100px; }
    75% { opacity: 0.25; width: 95px; }
}

.cyber-bracket {
    color: var(--primary);
    font-size: 2rem;
    font-weight: bold;
    animation: bracketPulse 2s infinite;
}

.cyber-text {
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 0 1rem;
}

.cyber-matrix {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 50%, rgba(157, 78, 221, 0.1) 50%),
        linear-gradient(rgba(157, 78, 221, 0.1) 50%, transparent 50%);
    background-size: 4px 4px;
    z-index: -1;
    opacity: 0.3;
    animation: matrix 20s linear infinite;
}

@keyframes bracketPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes noise {
    100% { transform: translate3d(50%, 50%, 0); }
}

@keyframes matrix {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

@keyframes glitch-1 {
    0% { clip-path: inset(80% 0 0 0); }
    20% { clip-path: inset(20% 0 40% 0); }
    40% { clip-path: inset(60% 0 20% 0); }
    60% { clip-path: inset(40% 0 60% 0); }
    80% { clip-path: inset(0 0 80% 0); }
    100% { clip-path: inset(50% 0 30% 0); }
}

@keyframes glitch-2 {
    0% { clip-path: inset(20% 0 60% 0); }
    20% { clip-path: inset(60% 0 20% 0); }
    40% { clip-path: inset(40% 0 40% 0); }
    60% { clip-path: inset(80% 0 0 0); }
    80% { clip-path: inset(0 0 80% 0); }
    100% { clip-path: inset(30% 0 50% 0); }
}

.search-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    perspective: 1000px;
}

.cyber-search {
    width: 100%;
    max-width: 700px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.search-field {
    position: relative;
    background: rgba(16, 16, 31, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 12px;
    padding: 8px;
    display: flex;
    align-items: center;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.search-field input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    padding: 12px 20px;
    outline: none;
    letter-spacing: 1px;
}

.search-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    margin-right: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-icon i {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.search-effects {
    position: absolute;
    inset: -2px;
    pointer-events: none;
    overflow: hidden;
    border-radius: 12px;
}

.glow-line {
    position: absolute;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--primary),
        var(--secondary),
        transparent
    );
    top: 50%;
    left: -200%;
    transform: translateY(-50%);
    transition: left 0.5s ease;
}

.corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid var(--primary);
    opacity: 0;
    transition: all 0.3s ease;
}

.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.ripple-1, .ripple-2 {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

/* Hover Effects */
.cyber-search:hover {
    transform: translateY(-2px) rotateX(5deg);
}

.cyber-search:hover .search-field {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
}

.cyber-search:hover .search-icon,
.cyber-search:focus-within .search-icon {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.5);
}

.cyber-search:hover .search-icon i,
.cyber-search:focus-within .search-icon i {
    transform: rotate(180deg);
}

.cyber-search:focus-within .glow-line {
    left: 100%;
    transition: left 1s ease;
}

.cyber-search:focus-within .corner {
    opacity: 1;
    width: 20px;
    height: 20px;
}

.cyber-search:focus-within .ripple-1 {
    animation: ripple 1s ease-out infinite;
    animation-delay: 0s;
}

.cyber-search:focus-within .ripple-2 {
    animation: ripple 1s ease-out infinite;
    animation-delay: 0.3s;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

.search-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    top: -25%;
    left: -25%;
    animation: rotateGlow 3s linear infinite;
}

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

.mega-search-bar i {
    color: white;
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.mega-search-bar input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    outline: none;
    letter-spacing: 0.5px;
}

.mega-search-bar:hover,
.mega-search-bar:focus-within {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.3);
}

.mega-search-bar:hover .search-icon-wrapper,
.mega-search-bar:focus-within .search-icon-wrapper {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
}

.search-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 30px;
}

.search-glow {
    position: absolute;
    background: radial-gradient(circle at center, var(--primary) 0%, transparent 70%);
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mega-search-bar:focus-within .search-glow {
    opacity: 0.1;
    animation: pulse 2s infinite;
}

.search-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
}

.mega-search-bar:focus-within .search-particle:nth-child(1) {
    animation: particle1 2s infinite;
}

.mega-search-bar:focus-within .search-particle:nth-child(2) {
    animation: particle2 2.5s infinite;
}

.mega-search-bar:focus-within .search-particle:nth-child(3) {
    animation: particle3 3s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.2; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
}

@keyframes particle1 {
    0% { left: -10%; top: 50%; opacity: 0; transform: scale(0); }
    25% { opacity: 1; transform: scale(1.2); }
    50% { left: 30%; top: 20%; opacity: 0.7; transform: scale(1); }
    75% { opacity: 0.5; transform: scale(0.8); }
    100% { left: 110%; top: 50%; opacity: 0; transform: scale(0); }
}

@keyframes particle2 {
    0% { right: -10%; top: 50%; opacity: 0; transform: scale(0) rotate(0deg); }
    25% { opacity: 1; transform: scale(1.2) rotate(90deg); }
    50% { right: 30%; top: 80%; opacity: 0.7; transform: scale(1) rotate(180deg); }
    75% { opacity: 0.5; transform: scale(0.8) rotate(270deg); }
    100% { right: 110%; top: 50%; opacity: 0; transform: scale(0) rotate(360deg); }
}

@keyframes particle3 {
    0% { left: 50%; bottom: -10%; opacity: 0; transform: scale(0); }
    25% { opacity: 1; transform: scale(1.2); }
    50% { left: 20%; bottom: 40%; opacity: 0.7; transform: scale(1); }
    75% { opacity: 0.5; transform: scale(0.8); }
    100% { left: 50%; bottom: 110%; opacity: 0; transform: scale(0); }
}

.mega-search-bar::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-1);
    z-index: -1;
    border-radius: inherit;
    opacity: 0.1;
}

.mega-search-bar:focus-within {
    box-shadow: 0 0 30px var(--primary);
    transform: scale(1.02);
}

.mega-search-bar:focus-within::before {
    opacity: 0.2;
    animation: rotate 3s linear infinite;
}

.mega-search-bar i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: var(--spacing-md);
    text-shadow: var(--neon-glow);
}

.mega-search-bar input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    width: 100%;
    outline: none;
    font-size: 1.2rem;
    padding: var(--spacing-sm) 0;
}

.view-filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 700px;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: var(--background-card);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--border-color);
}

.search-bar i {
    color: var(--text-tertiary);
    margin-right: var(--spacing-sm);
}

.search-bar input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    width: 100%;
    outline: none;
    font-size: 1rem;
}

/* View options removed as per user request */

.filter-sort {
    display: flex;
    gap: var(--spacing-md);
}

.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 700px;
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(157, 78, 221, 0.7);
    color: var(--primary);
    border-radius: 0;
    padding: var(--spacing-sm) var(--spacing-md);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.4), inset 0 0 5px rgba(157, 78, 221, 0.3);
    font-family: monospace;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 75%,
        85% 100%,
        0 100%
    );
}

.dropdown-btn::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 3px;
    background: rgba(157, 78, 221, 0.8);
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
}

.dropdown-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.6), inset 0 0 8px rgba(157, 78, 221, 0.4);
}

.dropdown-btn:hover::after {
    left: 100%;
    transition: left 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.dropdown-content {
    position: absolute;
    top: 110%;
    right: 0;
    background-color: var(--background-modal);
    min-width: 160px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
    z-index: 100;
    display: none;
    border: 1px solid var(--border-color);
}

.dropdown-content a {
    color: var(--text-secondary);
    padding: var(--spacing-sm) var(--spacing-md);
    text-decoration: none;
    display: block;
    transition: var(--transition-fast);
}

.dropdown-content a:hover {
    background-color: var(--primary-light);
    color: var(--primary);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.websites-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    min-width: 40px;
    background: rgba(0, 0, 0, 0.7);
    margin-left: 0;
    border-radius: 0;
    position: relative;
    border: 2px solid rgba(157, 78, 221, 0.7);
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.4), inset 0 0 5px rgba(157, 78, 221, 0.3);
    overflow: hidden;
    padding: 0 15px;
    transition: all 0.3s ease;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 75%,
        85% 100%,
        0 100%
    );
}

.websites-counter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(157, 78, 221, 0.1), 
        rgba(157, 78, 221, 0.3), 
        rgba(157, 78, 221, 0.1)
    );
    opacity: 0.7;
    z-index: -1;
    animation: scanline 2s ease-in-out infinite;
}

.websites-counter::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 3px;
    background: rgba(157, 78, 221, 0.8);
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
}

@keyframes scanline {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.websites-counter:hover::after {
    left: 100%;
    transition: left 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.websites-counter:hover {
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.6), inset 0 0 8px rgba(157, 78, 221, 0.4);
}

#current-count {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.7);
    padding: 0 5px;
    transition: all 0.3s ease;
    font-family: monospace;
    letter-spacing: 1px;
}

.count-updating {
    transform: scale(1.2);
    opacity: 0.8;
    text-shadow: 0 0 15px var(--primary);
    animation: digitalFlicker 0.5s infinite;
}

@keyframes digitalFlicker {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.3; }
}

.add-website-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-fast);
}

.add-website-btn:hover {
    background-color: var(--primary-hover);
}

/* Website Grid/List Views */
.websites-container {
    display: grid;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.grid-view {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.list-view {
    grid-template-columns: 1fr;
}

.website-card {
    background-color: rgba(16, 16, 31, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 2px solid rgba(157, 78, 221, 0.1);
    transform-style: preserve-3d;
    perspective: 2000px;
    isolation: isolate;
    clip-path: polygon(
        calc(0% + 10px) 0%,
        calc(100% - 10px) 0%,
        100% 10px,
        100% calc(100% - 10px),
        calc(100% - 10px) 100%,
        10px 100%,
        0% calc(100% - 10px),
        0% 10px
    );
    cursor: pointer;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.website-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        45deg,
        var(--primary),
        var(--secondary),
        var(--accent),
        var(--primary)
    );
    background-size: 400% 400%;
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: inherit;
    animation: gradientMove 8s ease infinite;
    clip-path: inherit;
}

.website-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(157, 78, 221, 0.15) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: inherit;
    mix-blend-mode: overlay;
    clip-path: inherit;
}

.website-card .corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.website-card .corner::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.website-card .corner.top-left {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.website-card .corner.top-right {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.website-card .corner.bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.website-card .corner.bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.website-card:hover {
    transform: translateY(-20px) rotateX(15deg) rotateY(10deg);
    border-color: transparent;
    box-shadow: 
        0 25px 50px -12px rgba(157, 78, 221, 0.5),
        0 0 30px rgba(157, 78, 221, 0.3),
        inset 0 0 30px rgba(157, 78, 221, 0.2);
}

.website-card:hover::before {
    opacity: 0.3;
    animation: gradientMove 4s linear infinite;
}

.website-card:hover::after {
    opacity: 1;
}

.website-card:hover .corner {
    opacity: 1;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
}

.website-card:hover .corner::before {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

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

.website-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        45deg,
        var(--primary),
        var(--secondary),
        var(--accent),
        var(--primary)
    );
    background-size: 400% 400%;
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: inherit;
    animation: gradientMove 8s ease infinite;
}

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

.website-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(157, 78, 221, 0.15) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: inherit;
    mix-blend-mode: overlay;
}

.website-card:hover {
    transform: translateY(-15px) rotateX(10deg) rotateY(5deg);
    border-color: transparent;
    box-shadow: 
        0 25px 50px -12px rgba(157, 78, 221, 0.4),
        0 0 20px rgba(157, 78, 221, 0.2),
        inset 0 0 20px rgba(157, 78, 221, 0.1);
}

.website-card:hover::before {
    opacity: 0.2;
}

.website-card:hover::after {
    opacity: 1;
}

.website-card .glow-line {
    position: absolute;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--primary),
        var(--secondary),
        transparent
    );
    top: 50%;
    left: -200%;
    transform: translateY(-50%);
    transition: left 0.5s ease;
    pointer-events: none;
}

.website-card:hover .glow-line {
    left: 100%;
}

.website-card .corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid var(--primary);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.website-card .corner.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.website-card .corner.top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.website-card .corner.bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.website-card .corner.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.website-card:hover .corner {
    opacity: 1;
    width: 20px;
    height: 20px;
}

.website-card:hover::after {
    opacity: 1;
}

.website-thumbnail {
    width: 100%;
    max-height: 180px;
    background-color: var(--background-modal);
    position: relative;
    overflow: hidden;
}

/* New thumbnail image styling */
.thumbnail-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    transition: transform var(--transition-normal);
    display: block;
}

.website-card:hover .thumbnail-image {
    transform: scale(1.1);
}

/* Maintain placeholder styling */
.website-thumbnail .placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
    width: 100%;
    color: var(--text-tertiary);
    font-size: 2rem;
}

/* List view thumbnails */
.list-view .website-thumbnail {
    height: 80px;
    width: 120px;
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
}

.list-view .thumbnail-image {
    height: 80px;
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
}

.list-view .website-thumbnail .placeholder {
    height: 80px;
}

.website-info {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}

.edit-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: rgba(16, 16, 31, 0.8);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.3);
}

.edit-icon i {
    font-size: 0.9rem;
}

.website-card:hover .edit-icon {
    opacity: 1;
    transform: scale(1);
}

.edit-icon:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.5);
    transform: scale(1.1);
}

/* Enhanced Custom Cursor with Glowing Trail */
.cursor-dot,
.cursor-dot-outline,
.cursor-trail {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.cursor-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
    mix-blend-mode: screen;
}

.cursor-dot-outline {
    width: 30px;
    height: 30px;
    background: transparent;
    border: 2px solid var(--secondary);
    box-shadow: 0 0 15px rgba(0, 245, 212, 0.5);
}

.cursor-trail {
    width: 6px;
    height: 6px;
    background: var(--primary);
    opacity: 0.5;
    box-shadow: 0 0 15px var(--primary), 0 0 5px var(--primary);
    z-index: 9998;
    mix-blend-mode: screen;
    transition: width 0.3s, height 0.3s, opacity 0.6s;
}

body.clickable-active .cursor-dot {
    transform: translate(-50%, -50%) scale(1.5);
    background: var(--secondary);
    box-shadow: 0 0 15px var(--secondary), 0 0 30px var(--secondary);
}

body.clickable-active .cursor-dot-outline {
    transform: translate(-50%, -50%) scale(0.8);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.5);
}

/* Default cursor styles */
body {
    cursor: default;
}

/* Add specific cursor for text selection */
text, p, h1, h2, h3, h4, h5, h6, span, input, textarea {
    cursor: text;
}

/* Show appropriate cursor for clickable elements */
a, button, .website-card, .sidebar-item, input[type="submit"], select, .dropdown-btn, label {
    cursor: pointer;
}

.enhanced-thumbnail {
    position: relative;
    overflow: hidden;
}

.list-view .website-card {
    display: flex;
    align-items: center;
}

.website-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.website-description {
    color: var(--text-primary);
    font-size: 0.95rem;
    margin: var(--spacing-sm) 0;
    display: block;
    line-height: 1.5;
    border-left: 3px solid var(--primary);
    padding: var(--spacing-sm) var(--spacing-sm);
    background-color: rgba(157, 78, 221, 0.1);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    opacity: 1;
    visibility: visible;
    position: relative;
    overflow: visible;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1;
}

.website-url {
    color: var(--text-tertiary);
    font-size: 0.85rem;
    margin-bottom: var(--spacing-sm);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-style: italic;
    display: flex;
    align-items: center;
}

.url-icon {
    margin-right: 6px;
    color: var(--primary);
}

.website-category {
    display: inline-flex;
    align-items: center;
    position: relative;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: var(--border-radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-glow);
    margin-right: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 0 4px rgba(157, 78, 221, 0.3);
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all var(--transition-normal);
    z-index: 2;
    letter-spacing: 0.5px;
}

.category-icon {
    margin-right: 6px;
    font-size: 0.9rem;
}

.website-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    background: var(--gradient-1);
    transition: opacity var(--transition-normal);
}

.website-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(157, 78, 221, 0.3);
    color: white;
    border-color: transparent;
}

.website-category:hover::before {
    opacity: 1;
}

.website-category.category-ai {
    background-color: rgba(157, 78, 221, 0.1);
    color: var(--primary);
    box-shadow: 0 0 5px rgba(157, 78, 221, 0.3);
    border-color: rgba(157, 78, 221, 0.2);
}

.website-category.category-others {
    background-color: rgba(255, 214, 0, 0.1);
    color: var(--warning);
    box-shadow: 0 0 5px rgba(255, 214, 0, 0.3);
    text-shadow: 0 0 4px rgba(255, 214, 0, 0.3);
    border-color: rgba(255, 214, 0, 0.2);
}

.website-category.category-others::before {
    background: linear-gradient(135deg, #FFD600, #FF9E2A);
}

.website-category.category-hacks {
    background-color: rgba(0, 176, 255, 0.1);
    color: var(--info);
    box-shadow: 0 0 5px rgba(0, 176, 255, 0.3);
    text-shadow: 0 0 4px rgba(0, 176, 255, 0.3);
    border-color: rgba(0, 176, 255, 0.2);
}

.website-category.category-web {
    background-color: rgba(255, 0, 128, 0.1);
    color: #ff0080;
    box-shadow: 0 0 5px rgba(255, 0, 128, 0.3);
    text-shadow: 0 0 4px rgba(255, 0, 128, 0.3);
    border-color: rgba(255, 0, 128, 0.2);
}

.website-category.category-web::before {
    background: linear-gradient(135deg, #ff0080, #7928ca);
}

.website-categories {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xs);
}

.website-actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.website-action-btn {
    background-color: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: var(--spacing-xs);
    border-radius: var(--border-radius-sm);
}

.website-action-btn:hover {
    color: var(--primary);
    background-color: var(--primary-light);
}

.website-favorite {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.website-favorite:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.website-favorite.active {
    color: #FCD34D;
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xl) 0;
    color: var(--text-tertiary);
}

.empty-state svg {
    margin-bottom: var(--spacing-lg);
}

.empty-state h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.empty-state p {
    font-size: 1rem;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--background-modal);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.close-modal {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-modal:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input:not([type="checkbox"]),
.form-group select {
    width: 100%;
    padding: var(--spacing-md);
    background-color: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: var(--spacing-md);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-secondary:hover {
    background-color: var(--background-card);
    color: var(--text-primary);
}

.btn-danger {
    background-color: var(--danger);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-right: auto;
}

.btn-danger:hover {
    background-color: #DC2626;
}

/* Toast Notification */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2001;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    padding: var(--spacing-md);
    border-radius: var(--border-radius-sm);
    background-color: var(--background-modal);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    min-width: 300px;
    max-width: 400px;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-success {
    border-left: 4px solid var(--success);
}

.toast-error {
    border-left: 4px solid var(--danger);
}

.toast-info {
    border-left: 4px solid var(--info);
}

.toast-warning {
    border-left: 4px solid var(--warning);
}

.toast-close {
    margin-left: auto;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1rem;
}

.toast-close:hover {
    color: var(--text-primary);
}

/* Contact Section - New Cool Design */
.contact-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

/* Hero Section */
.contact-hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    border-radius: 24px;
    overflow: hidden;
    background-color: rgba(16, 16, 31, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.contact-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.animated-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(157, 78, 221, 0.4), 
        rgba(0, 245, 212, 0.4), 
        rgba(255, 133, 0, 0.4)
    );
    animation: float 10s infinite ease-in-out;

    opacity: 0.5;
}

.animated-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -150px;
}

.animated-circle:nth-child(2) {
    width: 350px;
    height: 350px;
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
    background: linear-gradient(135deg, 
        rgba(0, 245, 212, 0.4), 
        rgba(255, 133, 0, 0.4)
    );
}

.animated-circle:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 15%;
    animation-delay: 1s;
    background: linear-gradient(135deg, 
        rgba(255, 133, 0, 0.4), 
        rgba(0, 176, 255, 0.4)
    );
}

.animated-circle:nth-child(4) {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 10%;
    animation-delay: 3s;
    background: linear-gradient(135deg, 
        rgba(157, 78, 221, 0.4), 
        rgba(0, 176, 255, 0.4)
    );
}

.animated-circle:nth-child(5) {
    width: 180px;
    height: 180px;
    top: 20%;
    left: 50%;
    animation-delay: 4s;
    background: linear-gradient(135deg, 
        rgba(0, 176, 255, 0.4), 
        rgba(157, 78, 221, 0.4)
    );
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, 20px);
    }
    50% {
        transform: translate(-5px, 30px);
    }
    75% {
        transform: translate(-25px, 10px);
    }
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    text-align: center;
    width: 85%;
    max-width: 800px;
}

.contact-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 20px rgba(157, 78, 221, 0.5);
    letter-spacing: 2px;
}

.contact-hero-subtitle {
    display: block;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.contact-hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* Social Tabs */
.social-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-tab {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background-color: rgba(16, 16, 31, 0.8);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(157, 78, 221, 0.3);

    gap: 10px;
}

.social-tab-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-tab-name {
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-tab:hover {
    transform: translateY(-5px);
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(157, 78, 221, 0.4);
}

.social-tab:hover .social-tab-icon,
.social-tab:hover .social-tab-name {
    color: white;
}

/* Contact Methods Section */
.contact-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.contact-methods-title {
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.contact-methods-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    width: 100%;
}

.contact-card {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 20px;
    background-color: rgba(16, 16, 31, 0.6);
    transition: all 0.4s ease;
    border: 1px solid rgba(157, 78, 221, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);

}

/* Thumbnail background for contact cards */
.contact-card-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: all 0.5s ease;
}

/* Color overlay for contact cards */
.contact-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.contact-card-overlay-primary {
    background: linear-gradient(135deg, 
        rgba(157, 78, 221, 0.85) 0%,
        rgba(0, 0, 0, 0.75) 100%
    );
}

.contact-card-overlay-secondary {
    background: linear-gradient(135deg, 
        rgba(0, 245, 212, 0.85) 0%,
        rgba(0, 0, 0, 0.75) 100%
    );
}

.contact-card-overlay-accent {
    background: linear-gradient(135deg, 
        rgba(255, 133, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.75) 100%
    );
}

.contact-card-overlay-info {
    background: linear-gradient(135deg, 
        rgba(0, 176, 255, 0.85) 0%,
        rgba(0, 0, 0, 0.75) 100%
    );
}

.contact-card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.contact-card-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 3;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-card:hover .contact-card-shine {
    transform: translateX(100%);
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.03);
}

.contact-card:hover .contact-card-thumbnail {
    transform: scale(1.1);
}

.contact-card:hover .contact-card-overlay {
    opacity: 0.7;
}

.contact-card-primary {
    border-color: rgba(157, 78, 221, 0.3);
}

.contact-card-primary .contact-card-icon {
    background-color: rgba(157, 78, 221, 0.3);
    color: white;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
}

.contact-card-secondary {
    border-color: rgba(0, 245, 212, 0.3);
}

.contact-card-secondary .contact-card-icon {
    background-color: rgba(0, 245, 212, 0.3);
    color: white;
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.5);
}

.contact-card-accent {
    border-color: rgba(255, 133, 0, 0.3);
}

.contact-card-accent .contact-card-icon {
    background-color: rgba(255, 133, 0, 0.3);
    color: white;
    box-shadow: 0 0 20px rgba(255, 133, 0, 0.5);
}

.contact-card-info {
    border-color: rgba(0, 176, 255, 0.3);
}

.contact-card-info .contact-card-icon {
    background-color: rgba(0, 176, 255, 0.3);
    color: white;
    box-shadow: 0 0 20px rgba(0, 176, 255, 0.5);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    position: relative;

}

.contact-card-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    animation: pulse 2s infinite;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-card .contact-info {
    font-size: 1rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 500;
    padding: 5px 15px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    display: inline-block;

}

.contact-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Feedback Section */
.contact-feedback {
    width: 100%;
    background-color: rgba(16, 16, 31, 0.6);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    margin-bottom: 50px;
    border: 1px solid rgba(157, 78, 221, 0.2);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-feedback::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(157, 78, 221, 0.1) 0%, 
        rgba(0, 245, 212, 0.1) 100%
    );
    z-index: 0;
}

.feedback-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feedback-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.feedback-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(157, 78, 221, 0.4);
}

.feedback-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(157, 78, 221, 0.6);
}

.feedback-button i {
    font-size: 1.2rem;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

/* New inline social links for contact page */
.social-links-inline {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--background-card);
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .sidebar {
        width: var(--sidebar-collapsed-width);
    }

    .content {
        margin-left: var(--sidebar-collapsed-width);
    }

    .sidebar.expanded {
        width: var(--sidebar-width);
    }

    .sidebar:not(.expanded) .logo h1,
    .sidebar:not(.expanded) .nav-item span,
    .sidebar:not(.expanded) .theme-toggle span,
    .sidebar:not(.expanded) .settings span {
        display: none;
    }

    .creator-badge-sidebar .creator-info-sidebar {
        display: none;
    }

    .creator-badge-sidebar {
        padding: 8px;
        background: none;
        border: none;
    }

    .creator-logo-sidebar {
        width: 32px;
        height: 32px;
    }

    .creator-badge-sidebar:hover {
        transform: none;
        background: none;
        box-shadow: none;
    }
}

@media (max-width: 768px) {
    .content-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-bar {
        max-width: 100%;
        width: 100%;
    }

    .filter-sort {
        width: 100%;
        justify-content: space-between;
    }

    .add-website-btn {
        width: 100%;
        justify-content: center;
    }

    .grid-view {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    /* Contact page responsive styles */
    .contact-hero {
        min-height: 350px;
    }

    .contact-hero-title {
        font-size: 3rem;
    }

    .contact-hero-description {
        font-size: 1rem;
    }

    .social-tabs {
        flex-wrap: wrap;
    }

    .contact-cards {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 480px) {
    /* Show only the icon for contact button on mobile */
    .contact-btn-sidebar span {
        display: none;
    }
    
    .contact-btn-sidebar {
        padding: var(--spacing-sm);
        width: 40px;
        height: 40px;
        justify-content: center;
        border-radius: 50%;
    }
    
    .content {
        padding: var(--spacing-sm);
    }

    .grid-view {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .website-card {
        max-width: 100%;
    }

    .modal-content {
        width: 95%;
    }

    .website-description {
        font-size: 0.85rem;
        line-height: 1.4;
        padding: var(--spacing-xs);
    }

    /* Contact page responsive styles */
    .contact-hero {
        min-height: 300px;
        border-radius: 16px;
    }

    .contact-hero-content {
        padding: 20px;
        width: 95%;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .contact-hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .social-tabs {
        gap: 10px;
    }

    .social-tab {
        padding: 8px 15px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-card {
        height: 250px;
    }

    .contact-methods-title,
    .feedback-title {
        font-size: 2rem;
    }

    .feedback-description {
        font-size: 1rem;
    }

    .feedback-button {
        width: 100%;
    }

    .animated-circle {
        filter: blur(40px);
    }
}