/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #111;
    color: #fff;
    line-height: 1.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0;
}

/* Header */
header {
    background: #222;
    padding: 15px 0;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    color: #FFD700;
}

.logo img {
    width: 40px;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    color: #FFD700;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #fff;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: #FFD700;
    cursor: pointer;
}

/* Positioning Whitepaper Button */
.hero-section {
    position: relative; /* Set relative for absolute positioning inside */
    background: url('hero-bg.jpeg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

/* Whitepaper Button */
.whitepaper-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: #FFD700; /* Gold */
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
    z-index: 999;
}

.whitepaper-btn a {
    text-decoration: none;
    color: #111;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

.whitepaper-btn a i {
    margin-right: 6px;
    font-size: 16px;
    color: #444;
}

.whitepaper-btn:hover {
    background-color: #FFC107; /* Darker gold */
    transform: translateY(-2px);
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .whitepaper-btn {
        top: 15px;
        right: 15px;
        padding: 8px 12px;
        font-size: 12px;
    }
}

.hero-content h1 {
    font-size: 36px;
    color: #FFD700;
}

.hero-content p {
    font-size: 18px;
    margin: 10px 0;
}

.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #FFD700;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
}

.cta-btn:hover {
    background: #ffcc00;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    text-align: center;
}

.about-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #FFD700;
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    text-align: center;
}

.features-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #FFD700;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature-item {
    width: 250px;
    padding: 20px;
    background: #333;
    border-radius: 8px;
    text-align: center;
}

.feature-item i {
    font-size: 30px;
    color: #FFD700;
    margin-bottom: 10px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

/* Token Section */
.token-section {
    padding: 80px 20px;
    text-align: center;
}

.token-section h2 {
    font-size: 28px;
    color: #FFD700;
}

.token-section ul {
    list-style: none;
    margin-top: 15px;
}

.token-section ul li {
    margin-bottom: 8px;
}

/* Community Section */
.community-section {
    padding: 80px 20px;
    text-align: center;
}

.community-section h2 {
    font-size: 28px;
    color: #FFD700;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #FFD700;
    font-size: 24px;
    margin: 0 10px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #ffcc00;
}

/* Footer */
footer {
    background: #222;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background: #222;
        position: absolute;
        top: 20px;
        right: 0;
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    nav ul.active {
        display: flex;
    }

    .feature-list {
        flex-direction: column;
        align-items: center;
    }
}
