* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
body {
    background: #0a0a0a;
    color: #e6e6e6;
    line-height: 1.8;
    overflow-x: hidden;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
nav {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav a {
    color: #e6e6e6;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    margin-left: 30px;
    transition: color 0.3s;
}
nav a:hover {
    color: #d4af37;
}
nav .logo {
    font-size: 1.5em;
    font-weight: 700;
    color: #d4af37;
}
header {
    position: relative;
    height: 90vh;
    background: url('https://www.satoshifund.com/images/hero-bg.jpg') center/cover no-repeat fixed, linear-gradient(135deg, #1c1c1c 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(0, 0, 0, 0.85) 80%);
    z-index: 1;
}
.header-content {
    position: relative;
    z-index: 2;
}
header h1 {
    font-size: 6em;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #d4af37;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    animation: fadeInDown 1.8s ease-out;
}
header p {
    font-size: 2em;
    margin-top: 25px;
    color: #b8b8b8;
    font-weight: 400;
    animation: fadeInUp 2s ease-out;
}
section {
    padding: 120px 0;
    position: relative;
}
section:nth-child(even) {
    background: #121212;
}
h2 {
    font-size: 3.8em;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
    text-align: center;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}
h2 svg {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    fill: #d4af37;
}
p {
    font-size: 1.4em;
    color: #a8a8a8;
    max-width: 1000px;
    margin: 0 auto 40px;
    line-height: 1.9;
}
.cta-button {
    display: inline-block;
    padding: 20px 60px;
    background: linear-gradient(90deg, #d4af37, #a68b2a);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.cta-button:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    background: linear-gradient(90deg, #a68b2a, #d4af37);
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-top: 60px;
}
.card {
    background: #1a1a1a;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    transition: transform 0.6s;
}
.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}
.card:hover::before {
    transform: scale(1.3);
}
.card h3 {
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 25px;
    color: #d4af37;
    position: relative;
    z-index: 1;
}
.card p {
    font-size: 1.2em;
    color: #b8b8b8;
    position: relative;
    z-index: 1;
}
.allocation-table {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 25px;
    max-width: 1100px;
    margin: 50px auto;
    font-size: 1.3em;
}
.allocation-table div {
    padding: 25px;
    background: #1a1a1a;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
}
.allocation-table .header {
    font-weight: 700;
    color: #d4af37;
    background: #222222;
}
.x-post-section {
    padding: 80px 0;
    background: #1a1a1a url('https://www.satoshifund.com/images/x-bg.jpg') center/cover no-repeat fixed;
}
.x-post-box {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: rgba(34, 34, 34, 0.95);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}
.x-post-box:hover {
    transform: translateY(-8px);
}
.x-post-box h3 {
    font-size: 1.8em;
    color: #d4af37;
    margin-bottom: 20px;
}
.x-post-box p {
    font-size: 1.1em;
    color: #b8b8b8;
}
.x-post-box a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
.x-post-box a:hover {
    color: #a68b2a;
}
footer {
    padding: 100px 0;
    background: #1c1c1c;
    text-align: center;
    font-size: 1.1em;
    color: #777777;
    border-top: 1px solid #2a2a2a;
}
footer a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s;
    margin: 0 20px;
}
footer a:hover {
    color: #a68b2a;
}
footer .tagline {
    font-size: 1em;
    color: #b8b8b8;
    margin-top: 15px;
    font-style: italic;
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 1024px) {
    header h1 { font-size: 4.5em; }
    h2 { font-size: 3.2em; }
    .allocation-table { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    header { height: 80vh; }
    header h1 { font-size: 3.5em; }
    header p { font-size: 1.6em; }
    section { padding: 80px 0; }
    .cta-button { padding: 15px 50px; font-size: 1.3em; }
    nav a { margin-left: 15px; font-size: 0.9em; }
    footer a { margin: 0 10px; }
    .x-post-box { padding: 30px; }
}