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

:root {
    --black: #000000;
    --white: #FFFFFF;
    --cyan: #2BB5B8;
    --turquoise: #60C5B4;
    --green: #73D8A5;
    --blue: #159FC1;
    --orange: #F57E35;
    --red-orange: #F25D3A;
    --yellow: #FCCB2B;
}

body {
    font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--black);
}

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

/* Header */
header {
    background: var(--black);
    color: var(--white);
    padding: 100px 20px;
    text-align: left;
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.header-text {
    flex: 1;
}

.header-image {
    flex: 0 0 400px;
}

.header-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

header h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

header p {
    font-size: 1.3em;
    margin-bottom: 40px;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    font-size: 1em;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: 'Barlow', sans-serif;
    text-transform: lowercase;
}

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

.btn-primary:hover {
    background: var(--turquoise);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--cyan);
    border: 2px solid var(--cyan);
}

.btn-secondary:hover {
    background: var(--cyan);
    color: var(--black);
}

/* Navigation */
nav {
    background: var(--black);
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 15px 0;
}

nav a {
    color: var(--white);
    text-decoration: none;
    padding: 10px 25px;
    transition: color 0.3s;
    font-weight: 400;
}

nav a:hover {
    color: var(--cyan);
}

/* Sections */
section {
    padding: 80px 20px;
}

section:nth-child(even) {
    background: #0A0A0A;
}

h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: var(--white);
    text-align: left;
    text-transform: uppercase;
}

h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8em;
    margin: 30px 0 15px;
    color: var(--cyan);
}

/* Story Section */
.story-content {
    max-width: 900px;
    font-size: 1.1em;
    line-height: 1.8;
}

.story-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-card {
    background: var(--black);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #1a1a1a;
    transition: all 0.3s;
}

.highlight-card:hover {
    border-color: var(--cyan);
    transform: translateY(-5px);
}

.highlight-number {
    font-size: 3em;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 10px;
}

/* Download Section */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.download-card {
    background: var(--black);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #1a1a1a;
}

.download-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

/* Roadmap */
.roadmap-list {
    max-width: 800px;
}

.roadmap-item {
    background: var(--black);
    padding: 25px;
    margin-bottom: 20px;
    border-left: 5px solid var(--cyan);
    border-radius: 10px;
}

.roadmap-item h4 {
    color: var(--cyan);
    margin-bottom: 10px;
    font-size: 1.3em;
}

/* Donation Program */
.donation-box {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: left;
    margin-top: 40px;
}

.donation-box h3 {
    color: var(--white);
    margin-top: 0;
}

/* Community */
.community-links {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.community-card {
    background: var(--black);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    min-width: 250px;
    border: 2px solid #1a1a1a;
    transition: all 0.3s;
}

.community-card:hover {
    border-color: var(--cyan);
    transform: translateY(-5px);
}

.community-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #333;
}

footer a {
    color: var(--cyan);
    text-decoration: none;
}

footer a:hover {
    color: var(--turquoise);
}

/* Alert Box */
.alert {
    background: #1a1a1a;
    border-left: 5px solid var(--yellow);
    padding: 20px;
    margin: 30px 0;
    border-radius: 10px;
    max-width: 800px;
}

.alert-title {
    font-weight: 600;
    color: var(--yellow);
    margin-bottom: 10px;
}

/* Logo corner */
.logo-corner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5em;
    }
    
    header p {
        font-size: 1.1em;
    }

    .header-content {
        flex-direction: column;
        gap: 40px;
    }

    .header-image {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
    }

    h2 {
        font-size: 2em;
    }
}
