@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}

body {
    background: #0c0c0f;
    color: white;
    overflow-x: hidden;
}

.grid-bg {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(#202020 1px, transparent 1px),
        linear-gradient(90deg, #202020 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: .18;
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    padding-top: 80px;
}

.hero {
    margin-top: 90px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    opacity: .8;
    margin-bottom: 30px;
}

.btn-row {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: .2s;
}

.btn.primary {
    background: #5865F2;
    color: white;
}

.btn.secondary {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
}

.badges span {
    background: rgba(255, 255, 255, .1);
    padding: 6px 14px;
    border-radius: 8px;
    margin-right: 10px;
    border: 1px solid rgba(255, 255, 255, .15);
}


.discord-panel {
    position: absolute;
    width: 420px;
}

.panel-1 {
    top: 580px;
    left: 90px;
}

.panel-2 {
    top: 580px;
    left: 540px;
}

.panel-3 {
    top: 580px;
    left: 990px;
}

.discord-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    padding: 22px;
    backdrop-filter: blur(14px);

    height: 250px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.discord-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.discord-user {
    display: flex;
    gap: 18px;
    align-items: center;
}

.discord-description {
    margin-top: 3px;
    opacity: 0.85;
    font-size: 15px;
    line-height: 1.45;
}

.discord-description strong {
    color: #fff;
    opacity: 0.9;
}

.description-tight {
    margin-top: -12px;
    padding-left: 5px;
    font-size: 14px;
    line-height: 1.35;
    opacity: 0.85;
}

.avatar {
    width: 75px;
    height: 75px;
    border-radius: 14px;
}

.dm-button {
    padding: 7px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .2);
    color: white;
    text-decoration: none;
    font-weight: 400;
        transform: translateY(-20px);

}

.discord-status-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 5px 12px;
    border-radius: 8px;
}

.status-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-icon.online { background: #3ba55d; }
.status-icon.idle { background: #faa61a; }
.status-icon.dnd { background: #ed4245; }
.status-icon.offline { background: #747f8d; }

.socials {
    display: flex;
    gap: 10px;
}

.social-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 6px 12px;
    border-radius: 8px;
    color: white;
    font-size: .8rem;
    text-decoration: none;
    transition: .2s;
}

.social-badge:hover {
    background: rgba(255, 255, 255, .16);
    transform: translateY(-2px);
}


.spotify-card {
    display: flex;
    gap: 14px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 14px;
    border-radius: 14px;
    height: 98px;
}

.spotify-cover {
    width: 70px;
    height: 70px;
    border-radius: 10px;
}

.progress-container {
    width: 350px;
    height: 6px;
    background: rgba(255, 255, 255, .2);
    border-radius: 10px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: #0084ff;
    transition: width .2s linear;
}


.why-section {
    width: 90%;
    max-width: 1300px;
    margin: 120px auto 200px auto; /* statt 480px */
    text-align: center;
}

.why-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.why-floating-icon {
    font-size: 44px;
    color: steelblue;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.why-header h2 {
    font-size: 2.8rem;
    margin-top: 14px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.why-card {
    position: relative;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(70, 130, 180, 0.35);
    border-radius: 18px;

    padding: 26px 28px;
    display: flex;
    align-items: center;
    gap: 16px;

    height: 110px;
    font-size: 1.05rem;

    transition: .25s ease;
}

.why-slide {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(70,130,180,0.35), transparent);
    transition: .45s ease;
}

.why-card:hover .why-slide {
    left: 100%;
}

.why-i {
    font-size: 24px;
    color: white;
    filter: drop-shadow(0 0 6px steelblue);
}

.hero-wrapper {
    width: 90%;
    max-width: 1500px;
    margin: 120px auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;

    gap: 50px;
}

.hero-left h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 700;
    color: white;
}

.hero-left p {
    margin-top: 25px;
    font-size: 1.25rem;
    opacity: .85;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hero-primary {
    background: steelblue;
    padding: 14px 45px;
    border-radius: 10px;
    font-weight: 600;
    color: white;
    box-shadow: 0 0 22px rgba(70,130,180,0.75);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.hero-primary:hover {
    box-shadow: 0 0 40px rgba(70,130,180,1);
    transform: translateY(-2px);
}

.hero-secondary {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    color: white;
}

.hero-stats {
    margin-top: 45px;
    display: flex;
    gap: 25px;
}

.stat {
    position: relative;
}

.stat-icon {
    width: 58px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 16px;
    background: rgba(70,130,180,0.05);
    border: 1px solid rgba(70,130,180,0.25);
    box-shadow: 0 0 10px rgba(70,130,180,0.15);

    transition: 0.25s ease;
}

.stat-icon i {
    font-size: 26px;
    color: steelblue;
}

.stat:hover .stat-icon {
    background: rgba(70,130,180,0.12);
    border-color: rgba(70,130,180,0.45);
    box-shadow: 0 0 20px rgba(70,130,180,0.45);
}

.stat::before {
    content: "";
    position: absolute;

    top: 58px;
    left: 50%;
    transform: translateX(-1px);

    width: 2px;
    height: 0;
    background: steelblue;
    opacity: 0;

    transition: height 0.25s ease, opacity 0.2s ease;
}

.stat::after {
    content: "";
    position: absolute;

    top: calc(58px + 39px);
    left: calc(50% - 1px);

    width: 0;
    height: 2px;
    background: steelblue;
    opacity: 0;

    transition: width 0.25s ease, opacity 0.2s ease;
}

.stat-text {
    position: absolute;
    top: calc(66px + 40px - 10px);
    left: calc(50% + 40px);

    opacity: 0;
    padding: 6px 10px;
    font-size: 14px;
    white-space: nowrap;

    background: rgba(10, 16, 24, 0.9);
    border-radius: 8px;
    border: 1px solid rgba(70,130,180,0.4);
    color: white;

    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.25s ease;
}

.stat:hover::before {
    height: 40px;
    opacity: 1;
}

.stat:hover::after {
    width: 35px;
    opacity: 1;
}

.stat:hover .stat-text {
    opacity: 1;
    transform: translateY(0);
}


.hero-codebox {
    width: 520px;
    background: #0f1117;
    border-radius: 20px;
    border: 1px solid rgba(70,130,180,0.25);
    box-shadow: 0 0 18px rgba(0,0,0,0.6);
    overflow: hidden;

    transform-style: preserve-3d;
    transform-origin: center;
    will-change: transform;
    transition: transform 0.15s ease-out;

    transform: perspective(900px) rotateX(6deg) rotateY(-4deg);
}

.hero-codebox.hovering {
    transition: transform 0.05s ease-out;
}

.codebox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.filename {
    margin-right: auto;
}

.codebox-header .circle {
    margin-left: 8px;
}

.codebox-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #0f1117;
    border-bottom: 1px solid rgba(70,130,180,0.15);
}

.circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.filename {
    margin-left: 10px;
    opacity: .85;
    font-size: 0.9rem;
}

.code-tabs {
    display: flex;
    background: #0f1117;
    border-bottom: 1px solid rgba(70,130,180,0.15);
}

.tab {
    padding: 14px 22px;
    font-size: 0.95rem;
    opacity: .6;
    cursor: pointer;
}

.tab.active {
    opacity: 1;
    color: steelblue;
    border-bottom: 2px solid steelblue;
    font-weight: 700;
}

.code-window {
    background: #080808;
    padding: 26px 30px;
    font-family: Consolas, Menlo, monospace;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #e0e0e0;
    height: 260px;
}

.code-window .keyword {
    color: #ff6bcf;  
}

.code-window .func {
    color: #63e2ff;   
}

.code-window .string {
    color: #ffe97b;   
}
.codebox-header {
    position: relative;
    overflow: hidden;

    background: linear-gradient(
        to bottom,
        #000000 0%,
        #000000 100%
    );

    border-bottom: 1px solid rgba(70,130,180,0.18);
}

.codebox-header::after {
    content: "";
    position: absolute;
    top: 0;

    left: -100%;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(70,130,180,0.60) 50%,
        transparent 100%
    );

    animation: headerGlowSlide 2s linear infinite alternate; 
    opacity: 0.75;
    filter: blur(12px);
    pointer-events: none;
}

@keyframes headerGlowSlide {
    0%   { left: -100%; }
    100% { left: 100%; }
}

nav#topNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: #0c0c0f;
    border-bottom: 1px solid rgba(70,130,180,0.25);

    display: flex;
    justify-content: center;
    align-items: center;

    height: 70px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-logo-img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    margin-left: 200px;

}

.tab-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1700px;
}

.tab-item {
    opacity: 0.75;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.2s;
    padding: 9px 0;
}

.tab-item:hover {
    opacity: 1;
    color: steelblue;
}

.plus {
    color: steelblue;
    font-weight: 700;
}

.cursor {
    display: inline-block;
    width: 8px;
    background: white;
    margin-left: 4px;
    animation: blink 0.8s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}


.center-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 850px;
    height: 850px;

    transform: translate(-50%, -50%);

    background: radial-gradient(
        circle,
        rgba(70,130,180,0.35) 0%,
        rgba(70,130,180,0.12) 40%,
        rgba(70,130,180,0.05) 60%,
        transparent 100%
    );

    filter: blur(120px);
    opacity: 0.90;

    z-index: -2;
    pointer-events: none;
}



        .unified-section-header {
    width: 100%;
    max-width: 1200px;
    margin: 140px auto 60px auto;
    text-align: center;
    padding: 0 20px;
}

.section-animated-icon {
    font-size: 40px;
    color: #0084ff;

    opacity: 0;
    display: inline-block;

    transform: translateY(25px) rotate(0deg);

    animation: 
        iconAppear 1.2s ease forwards,
        iconFloatTilt 3.5s ease-in-out infinite 1.2s;
}

@keyframes iconAppear {
    0% {
        opacity: 0;
        transform: translateY(25px) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes iconFloatTilt {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(12deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;

    margin-top: 20px;
    margin-bottom: 8px;

    opacity: 0;
    transform: translateY(15px);
    animation: iconAppear 1.2s ease forwards 0.15s;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #bdbdbd;
    margin-bottom: 45px;

    opacity: 0;
    transform: translateY(10px);
    animation: iconAppear 1.2s ease forwards 0.25s;
}

@media (max-width: 768px) {

    .section-title {
        font-size: 2.3rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .section-animated-icon {
        font-size: 55px;
    }
}

#community-section {
    padding: 20px 0;
    text-align: center;

    margin-top: -30px;
    margin-bottom: 150px;
}


.community-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.community-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 25px;
    width: 280px;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.community-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.25);
}

.community-card i {
    font-size: 40px;
    color: var(--accent, #5FA4D8);
    margin-bottom: 15px;
}

.community-btn {
    display: inline-block;
    background: var(--accent, #5FA4D8);
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 15px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s;
}

.community-btn:hover {
    opacity: 0.8;
}

#footer {
    background: #0d0d0d;
    padding: 60px 5%;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-info {
    max-width: 340px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #5FA4D8;
}

.footer-desc {
    color: #aaa;
    font-size: 15px;
    margin-bottom: 15px;
}

.footer-contact a {
    color: #5FA4D8;
}

.footer-location {
    color: #aaa;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5FA4D8;
    transition: 0.3s;
}

.social-icon:hover {
    border-color: #5FA4D8;
    transform: translateY(-3px);
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #555;
    font-size: 14px;
}
