@font-face {
    font-family: ProdSans;
    src: url('./../fonts/ProdSans.ttf');
}

@font-face {
    font-family: Sora;
    src: url('./../fonts/Sora-VariableFont_wght.ttf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primyel: #FFD700;
    --secyel: #FFA500;
    --primblk: #000000;
    --primwht: #FFFFFF;
    --gradpurp: linear-gradient(135deg, #A020F0, #6B46C1);
    --gradgrn: linear-gradient(135deg, #059669, #10B981);
    --gradorg: linear-gradient(135deg, #F97316, #FB923C);
    --wavgrad: linear-gradient(45deg, #1a5741, #092e44);
    --gradyel: linear-gradient(135deg, var(--primyel), var(--secyel));
    --bkggrad: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

body {
    font-family: 'Unbounded', sans-serif;
    background: var(--bkggrad);
    color: var(--primwht);
    line-height: 1.6;
    opacity: 0;
    transition: opacity 1s ease-in;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primblk);
}

::-webkit-scrollbar-thumb {
    background: var(--primyel);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secyel);
}

.wave-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradyel);
    opacity: 0.3;
    transform: skewY(-12deg);
    transform-origin: top left;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primblk);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader {
    text-align: center;
}

.star-icon {
    font-size: 48px;
    animation: pulse 2s infinite;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: transform 0.3s ease;
}

nav.nav-hidden {
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--primwht);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
    position: relative;
    font-family: Sora;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradyel);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--gradyel);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero {
    padding: 200px 0 100px;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
    background: var(--gradyel);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 20px;
    font-family: ProdSans;
}

.features {
    padding: 100px 0;
    font-family: 'Sora';
}

.section-header {
    text-align: center;
    margin-bottom: -1px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: -2px;
}

.section-header p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 200px;
    margin: 0 auto;
    font-family: Sora;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 40px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    will-change: transform;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
    background: rgba(228, 225, 62, 0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--primwht);
    stroke-width: 2.5;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    background: var(--gradyel);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: Sora;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
    font-family: Sora;
}

.footer-brand p {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-column a:hover {
    color: var(--primyel);
}

.footer-column a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradyel);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}


.button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    transform-origin: center;
    will-change: transform;
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.primary-btn {
    background: var(--gradyel);
    color: var(--primblk);
    font-family: Sora;
    cursor: pointer;
    text-decoration: none;
}

.secondary-btn {
    background-color: transparent;
    color: var(--primyel);
    border: 2px solid var(--primyel);
    font-family: Sora;
    text-decoration: none;
}

.secondary-btn:hover {
    background: var(--gradyel);
    color: var(--primblk);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.fade-in {
    opacity: 1;
    transform: translateY(0);
}