@keyframes scrollBackground {
    from { background-position: 0 0; }
    to { background-position: 120px 120px; }
}

:root {
    --color-bg-dark: #050505;
    --color-panel-dark: #121212;
    --color-panel-light: #1e1e1e;
    --color-accent: #ff6600;
    --color-stake-green: #53fc18;
    --color-text-main: #ffffff;
    --color-text-muted: #a4a4a4;
    --radius-sm: 6px;
    --radius-md: 12px;
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-gothic: "Cardo", serif;
}

* { box-sizing: border-box; }

body {
    background-color: var(--color-bg-dark);
    background-image: linear-gradient(rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.92)), url('https://givemax.me/static/images/ikonka.png');
    background-repeat: repeat;
    background-size: 120px 120px;
    animation: scrollBackground 25s linear infinite;
    color: var(--color-text-main);
    font-family: var(--font-sans);
    margin: 0; padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--color-panel-dark);
    border-bottom: 2px solid var(--color-accent);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.header-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.header-logo-link:hover {
    transform: scale(1.5);
    filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.4));
}

.header-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.9));
}

.hero-card {
    background: var(--color-panel-dark);
    border: 1px solid #222;
    border-radius: var(--radius-md);
    padding: 40px 20px;
    margin-top: 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

.stake-hero-logo {
    height: 65px;
    width: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.15));
}

.partner-badge {
    display: inline-block;
    background: #1a2e39;
    color: #ffffff;
    border: 1px solid #1475e1;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0 0 15px 0;
    color: #fff;
}

.hero-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto 30px auto;
}

.highlight {
    color: var(--color-accent);
}

.btn-cta {
    display: inline-block;
    background: #1a2e39;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 900;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: 0 0 20px rgba(20, 117, 225, 0.4);
    transition: all 0.2s ease;
}

.btn-cta:hover {
    background: #1475e1;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(20, 117, 225, 0.6);
}

.btn-cta:active {
    transform: scale(0.97);
}

.disclaimer-text {
    display: block;
    color: #555;
    font-size: 0.75rem;
    margin-top: 15px;
}

.banners-section {
    margin-top: 40px;
    text-align: center;
}

.section-title {
    font-size: 1.1rem;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.banners-grid {
    display: flex;
    justify-content: center;
}

.banner-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    border: 1px solid #222;
    transition: transform 0.2s ease;
}

.banner-img:hover {
    transform: scale(1.01);
    border-color: var(--color-accent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--color-panel-dark);
    border: 1px solid #222;
    border-radius: var(--radius-md);
    padding: 25px;
    text-align: center;
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.feature-card h3 {
    margin: 0 0 10px 0;
    color: #fff;
    font-size: 1.15rem;
}

.feature-card p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

footer {
    border-top: 1px solid #222;
    padding: 30px 0;
    text-align: center;
    color: #555;
    font-size: 0.8rem;
    background: #080808;
}

@media (max-width: 768px) {
    .header-logo { height: 60px; }
    .hero-title { font-size: 1.6rem; }
    .hero-card { padding: 25px 15px; }
    .stake-hero-logo { height: 48px; }
    .btn-cta { width: 100%; font-size: 1.05rem; padding: 14px 20px; }
}