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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent: #6366f1;
    --accent-hover: #818cf8;
    --border: #222222;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: none;
}

.cursor {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease;
}

/* Stars Background */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

@function multiple-box-shadow($n) {
    $value: "#{random(2000)}px #{random(2000)}px #FFF";
    @for $i from 2 through $n {
        $value: "#{$value}, #{random(2000)}px #{random(2000)}px #FFF";
    }
    @return unquote($value);
}

.stars {
    width: 1px;
    height: 1px;
    background: transparent;
    animation: animStar 150s linear infinite;
}

.stars::after {
    content: " ";
    position: absolute;
    top: 2000px;
    width: 1px;
    height: 1px;
    background: transparent;
}

.stars2 {
    width: 2px;
    height: 2px;
    background: transparent;
    animation: animStar 200s linear infinite;
}

.stars2::after {
    content: " ";
    position: absolute;
    top: 2000px;
    width: 2px;
    height: 2px;
    background: transparent;
}

.stars3 {
    width: 3px;
    height: 3px;
    background: transparent;
    animation: animStar 250s linear infinite;
}

.stars3::after {
    content: " ";
    position: absolute;
    top: 2000px;
    width: 3px;
    height: 3px;
    background: transparent;
}

/* Using CSS instead of SASS function */
.stars {
    box-shadow: 
        779px 1331px #fff, 324px 42px #fff, 303px 586px #fff,
        1312px 276px #fff, 451px 625px #fff, 521px 1931px #fff,
        1087px 1871px #fff, 36px 1546px #fff, 132px 934px #fff,
        1698px 901px #fff, 1418px 664px #fff, 1448px 1157px #fff,
        1084px 232px #fff, 347px 1776px #fff, 1722px 243px #fff,
        1629px 835px #fff, 479px 969px #fff, 1231px 960px #fff,
        586px 384px #fff, 164px 527px #fff, 8px 646px #fff,
        1150px 1126px #fff, 665px 1357px #fff, 1556px 1982px #fff,
        1260px 1961px #fff, 1675px 1741px #fff, 1843px 1514px #fff,
        718px 1628px #fff, 242px 1343px #fff, 1497px 1880px #fff,
        1364px 230px #fff, 1739px 1302px #fff, 636px 959px #fff,
        304px 686px #fff, 614px 751px #fff, 1935px 816px #fff,
        1428px 60px #fff, 355px 335px #fff, 1594px 158px #fff,
        90px 60px #fff, 1553px 162px #fff, 1239px 1825px #fff,
        1945px 587px #fff, 405px 1384px #fff, 1340px 1837px #fff,
        1547px 1683px #fff, 1684px 1600px #fff, 1834px 1406px #fff,
        347px 1152px #fff, 1471px 1397px #fff;
}

.stars2 {
    box-shadow:
        1982px 971px #fff, 1917px 905px #fff, 1434px 149px #fff,
        424px 542px #fff, 924px 1465px #fff, 683px 810px #fff,
        1842px 858px #fff, 566px 385px #fff, 604px 218px #fff,
        1534px 975px #fff, 112px 515px #fff, 1466px 928px #fff,
        1687px 1115px #fff, 1222px 508px #fff, 852px 1592px #fff,
        189px 644px #fff, 816px 968px #fff, 392px 34px #fff,
        525px 988px #fff, 639px 705px #fff, 368px 1702px #fff,
        656px 1504px #fff, 841px 1125px #fff, 1039px 1256px #fff,
        1203px 1194px #fff, 1842px 221px #fff, 1743px 827px #fff,
        673px 703px #fff, 1774px 1676px #fff, 674px 1695px #fff;
}

.stars3 {
    box-shadow:
        1897px 1171px #fff, 1537px 816px #fff, 330px 1792px #fff,
        92px 1088px #fff, 186px 1836px #fff, 1732px 332px #fff,
        1433px 1035px #fff, 195px 656px #fff, 683px 337px #fff,
        532px 1732px #fff, 1888px 1450px #fff, 1812px 1815px #fff,
        1078px 1904px #fff, 1675px 1432px #fff, 486px 785px #fff;
}

@keyframes animStar {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-2000px);
    }
}

/* Nebula effects */
.nebula {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.4;
    z-index: 1;
    background: radial-gradient(ellipse at top, rgba(138, 43, 226, 0.1) 0%, transparent 60%),
                radial-gradient(ellipse at bottom right, rgba(30, 58, 138, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at center left, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    animation: nebula-drift 60s ease-in-out infinite;
}

.nebula-2 {
    background: radial-gradient(ellipse at bottom left, rgba(220, 38, 127, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at top right, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
    animation: nebula-drift 90s ease-in-out infinite reverse;
}

@keyframes nebula-drift {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.4;
    }
    33% {
        transform: scale(1.1) rotate(1deg);
        opacity: 0.5;
    }
    66% {
        transform: scale(0.95) rotate(-1deg);
        opacity: 0.3;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}


.main {
    padding: 0;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.logo-main {
    margin-bottom: 60px;
}

.logo-main .logo-text {
    display: inline-block;
    font-family: 'Orbitron', monospace;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    padding: 10px 20px;
    border: 1px solid rgba(99, 102, 241, 0.5);
    border-radius: 50px;
    background: rgba(99, 102, 241, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.logo-main .logo-text:hover {
    border-color: rgba(99, 102, 241, 0.8);
    background: rgba(99, 102, 241, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
    letter-spacing: 0;
}

.hero-description {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeIn 1s ease 0.7s forwards;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .word {
    display: inline-block;
    animation: slideUp 0.8s ease backwards;
}

.hero-title .line:nth-child(2) .word {
    animation-delay: 0.2s;
}

.hero-title .line:nth-child(3) .word {
    animation-delay: 0.4s;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.copy-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(129, 140, 248, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.copy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.copy-button:hover {
    border-color: rgba(99, 102, 241, 0.6);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(129, 140, 248, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.copy-button:hover::before {
    left: 100%;
}

.copy-button.copied {
    border-color: rgba(34, 197, 94, 0.6);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(129, 140, 248, 0.05));
    backdrop-filter: blur(10px);
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    color: #ffffff;
    border-color: rgba(99, 102, 241, 0.6);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(129, 140, 248, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.cta-button:hover::before {
    left: 100%;
}

.hero-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent), transparent);
    top: 10%;
    left: 10%;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #818cf8, transparent);
    bottom: 20%;
    right: 10%;
    animation: float 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #c084fc, transparent);
    top: 50%;
    left: 50%;
    animation: float 30s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}


@media (max-width: 768px) {
    .cursor,
    .cursor-follower {
        display: none;
    }
    
    body {
        cursor: auto;
    }
    
    .nav {
        padding: 20px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 5vw, 3rem);
    }
    
    .logo-main .logo-text {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.4rem);
    }
    
    .hero-description {
        font-size: clamp(0.85rem, 1.8vw, 1rem);
        padding: 0 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 16px;
    }
    
    .cta-button {
        font-size: 13px;
        padding: 12px 20px;
    }
    
    .copy-button {
        width: 44px;
        height: 44px;
    }
}