:root {
    --bg-color: #0f1923;
    --text-color: #ece8e1;
    --accent-color: #ff4655;
    --secondary-color: #1f2731;
    --card-bg: #111;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

.overlay-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 70, 85, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 70, 85, 0.05) 0%, transparent 20%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
    pointer-events: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.highlight {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

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

.btn-primary:hover {
    background-color: #d13644;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--text-color);
    color: var(--text-color);
}

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

.btn-github {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.btn-github:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-github svg {
    transition: transform 0.3s ease;
}

.btn-github:hover svg {
    transform: rotate(360deg);
}

.btn.small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn.large {
    padding: 16px 48px;
    font-size: 1.2rem;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: slideInLeft 0.8s ease-out;
}

.tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-left: 2px solid var(--accent-color);
}

.hero h1 {
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.2rem;
    color: #aeb4b9;
    margin-bottom: 2rem;
    max-width: 90%;
}

.cta-group {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: fadeIn 1.2s ease-out;
}

.showcase-card {
    position: relative;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.showcase-card:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.showcase-img {
    max-width: 100%;
    display: block;
    border: 1px solid #333;
}

.features {
    padding: 8rem 10%;
    background-color: var(--secondary-color);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: var(--secondary-color);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.section-header .line {
    width: 50px;
    height: 4px;
    background-color: var(--accent-color);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid transparent;
    transition: all 0.3s;
}

.feature-card:hover {
    border-left-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    color: #8b9bb4;
}

.download-section {
    padding: 8rem 10%;
    text-align: center;
    background: radial-gradient(circle at center, #2a1f2d 0%, var(--bg-color) 70%);
}

.download-wrapper h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.download-wrapper p {
    font-size: 1.2rem;
    color: #aeb4b9;
    margin-bottom: 3rem;
}

.crypto-note {
    margin-top: 1rem !important;
    font-size: 0.9rem !important;
    opacity: 0.6;
}

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-size: 0.9rem;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .cta-group {
        justify-content: center;
    }

    .showcase-card {
        transform: none;
    }
}

/* Changelog Styles */
.changelog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.changelog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
}

.version-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.version-header h3 {
    font-size: 1.8rem;
    color: white;
    margin: 0;
}

.version-tag {
    background: var(--accent-color);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    font-family: var(--font-body);
}

.changelog-list {
    list-style: none;
    padding: 0;
}

.changelog-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 12px;
}

.changelog-list li .icon {
    font-size: 1.4rem;
}

.changelog-list li strong {
    color: white;
}