/* Base Styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Exo 2', sans-serif;
    margin: 0;
    padding: 0;
    background: #0a0a0a url('media/dzyra-hive-bg.jpg') no-repeat center/cover fixed;
    color: #e0e0e0;
    position: relative;
    overflow-x: hidden;
}

#particles-js {
    position: fixed;
    inset: 0;
    z-index: -1;
}

/* Typography and Links */
h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    color: #bb86fc;
    text-shadow: 0 0 15px rgba(187, 134, 252, 0.8);
    margin: 10px 0;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 10px 0;
    text-shadow: 0 0 5px rgba(187, 134, 252, 0.5);
}

a {
    color: #bb86fc;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: #ff7597;
    text-shadow: 0 0 10px rgba(255, 117, 151, 0.7);
}

/* Header and Navigation */
header {
    position: sticky;
    top: 0;
    padding: 10px 20px;
    z-index: 10;
    background: linear-gradient(180deg, #0a0a0a, rgba(10, 10, 10, 0.9));
    border-bottom: 2px solid #bb86fc;
    box-shadow: 0 0 20px rgba(187, 134, 252, 0.3);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 11;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #bb86fc;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(187, 134, 252, 0.7);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #ff7597;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: #ff7597;
}

.hamburger:hover span {
    background: #ff7597;
    box-shadow: 0 0 8px rgba(255, 117, 151, 0.7);
}

/* Navigation Links */
nav ul {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 0;
    list-style: none;
}

nav a {
    font-size: 1rem;
    padding: 5px 10px;
    border-radius: 5px;
    color: #bb86fc;
    text-shadow: 0 0 5px rgba(187, 134, 252, 0.5);
    transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #ff7597;
    text-shadow: 0 0 10px rgba(255, 117, 151, 0.7);
    transform: scale(1.05);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff7597;
    transition: width 0.3s ease;
    box-shadow: 0 0 5px rgba(255, 117, 151, 0.5);
}

nav a:hover::after { width: 100%; }

/* Buy $DKG Button */
.stake-button {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #0a0a0a;
    background: linear-gradient(45deg, #bb86fc, #ff7597);
    padding: 12px 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(187, 134, 252, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.stake-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(187, 134, 252, 1), 0 0 30px rgba(123, 44, 191, 0.8);
    color: #e0e0e0;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    z-index: 1;
}

/* Intro Section */
.intro {
    text-align: center;
    padding: 40px 20px;
    background: rgba(10, 10, 10, 0.7);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(187, 134, 252, 0.5);
    margin: 20px 0;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 10px;
    background: linear-gradient(45deg, #bb86fc, #ff7597);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(187, 134, 252, 0.8), 0 0 40px rgba(255, 117, 151, 0.5);
    animation: pulse-video 2s infinite ease-in-out;
}

.queen-video {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #bb86fc;
}

.persuasion-poem {
    font-size: 1.1rem;
    color: #e0e0e0;
    text-shadow: 0 0 8px rgba(187, 134, 252, 0.5);
    line-height: 1.8;
    max-width: 600px;
    margin: 20px auto;
    padding: 0 10px;
}

@keyframes pulse-video {
    0%, 100% { box-shadow: 0 0 20px rgba(187, 134, 252, 0.8), 0 0 40px rgba(255, 117, 151, 0.5); }
    50% { box-shadow: 0 0 30px rgba(187, 134, 252, 1), 0 0 60px rgba(255, 117, 151, 0.8); }
}

/* AI Agents Section */
.ai-agents {
    text-align: center;
    padding: 40px 20px;
    background: rgba(10, 10, 10, 0.7);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(187, 134, 252, 0.5);
    margin: 20px 0;
}

.agent-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.agent-card {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(187, 134, 252, 0.2), rgba(255, 117, 151, 0.2));
    border: 2px solid #bb86fc;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #e0e0e0;
}

.agent-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(187, 134, 252, 0.8), 0 0 30px rgba(255, 117, 151, 0.5);
}

.agent-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.agent-card[data-agent="chatdkg"]::before { background-image: url('media/chatdkg.jpg'); }
.agent-card[data-agent="polkabot"]::before { background-image: url('media/polkabot.jpg'); }
.agent-card[data-agent="databarista"]::before { background-image: url('media/databarista.jpg'); }
.agent-card[data-agent="tracverse"]::before { background-image: url('media/tracverse.jpg'); }
.agent-card[data-agent="gavunwud"]::before { background-image: url('media/gavunwud.jpg'); }
.agent-card[data-agent="scigraph"]::before { background-image: url('media/scigraph.jpg'); }

.agent-card h3, .agent-card p {
    position: relative;
    z-index: 1;
}

.agent-card h3 {
    color: #ff7597;
    text-shadow: 0 0 10px rgba(255, 117, 151, 0.7);
    margin-bottom: 10px;
}

.agent-card p {
    font-size: 1rem;
    text-shadow: 0 0 5px rgba(187, 134, 252, 0.5);
}

/* Features Section */
.features {
    text-align: center;
    padding: 40px 20px;
    background: rgba(10, 10, 10, 0.7) url('media/hive-pattern.png') repeat;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(187, 134, 252, 0.5);
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(187, 134, 252, 0.2) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
    animation: pulse-glow 4s infinite ease-in-out;
}

.features h2, .features p, .feature-grid {
    position: relative;
    z-index: 1;
}

.features h2 {
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(187, 134, 252, 1);
    margin-bottom: 10px;
}

.features p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, rgba(187, 134, 252, 0.3), rgba(255, 117, 151, 0.2));
    border: 2px solid #bb86fc;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(187, 134, 252, 0.8), 0 0 30px rgba(255, 117, 151, 0.5);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 117, 151, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 0.5;
}

.feature-icon {
    font-size: 2.5rem;
    color: #ff7597;
    text-shadow: 0 0 10px rgba(255, 117, 151, 0.7);
    margin-bottom: 10px;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #ff7597;
    text-shadow: 0 0 8px rgba(255, 117, 151, 0.7);
    margin: 10px 0;
}

.feature-card p {
    font-size: 1rem;
    color: #e0e0e0;
    text-shadow: 0 0 5px rgba(187, 134, 252, 0.5);
    margin: 0;
}

/* Infographic Section */
.infographic {
    text-align: center;
    padding: 40px 20px;
    background: rgba(10, 10, 10, 0.7);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(187, 134, 252, 0.5);
    margin: 20px 0;
}

.infographic-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #bb86fc;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.layer {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #e0e0e0;
}

.social-layer {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('media/dzyra-hive-bg.jpg');
    border: 2px solid #87CEEB;
    box-shadow: 0 0 10px rgba(135, 206, 235, 0.3);
}

.blockchain-layer {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('media/neuro-background.png');
    border: 2px solid #98FB98;
    box-shadow: 0 0 10px rgba(144, 238, 144, 0.3);
}

.tech-layer {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('media/origintrail-banner.jpg');
    border: 2px solid #FFC1CC;
    box-shadow: 0 0 10px rgba(255, 192, 203, 0.3);
}

.layer:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.layer h3 {
    text-shadow: 0 0 8px rgba(187, 134, 252, 0.5);
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.layer ul {
    padding: 0;
    list-style: none;
    text-align: left;
    max-width: 90%;
    margin: 10px auto;
    position: relative;
    z-index: 1;
}

.layer li {
    padding-left: 10px;
    margin: 8px 0;
    display: block;
    text-align: left;
}

.layer li:before {
    content: "✓";
    color: #ff7597;
    display: inline-block;
    width: 20px;
    margin-right: 5px;
}

.layer-label {
    position: absolute;
    top: 10px;
    font-family: 'Orbitron', sans-serif;
    color: #ff7597;
    font-size: 1.2rem;
    text-shadow: 0 0 5px rgba(255, 117, 151, 0.7);
}

.layer-label.left { left: 10px; }
.layer-label.right { right: 10px; }

/* Roadmap Section */
.roadmap {
    text-align: center;
    padding: 40px 20px;
    background: rgba(10, 10, 10, 0.7) url('media/hive-pattern.png') repeat;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(187, 134, 252, 0.5);
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.roadmap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(187, 134, 252, 0.2) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
    animation: pulse-glow 4s infinite ease-in-out;
}

.roadmap h2, .roadmap p, .timeline {
    position: relative;
    z-index: 1;
}

.roadmap h2 {
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(187, 134, 252, 1);
    margin-bottom: 10px;
}

.roadmap p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #bb86fc, #ff7597);
    box-shadow: 0 0 10px rgba(187, 134, 252, 0.7);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin: 30px 0;
    position: relative;
    width: 45%;
}

.timeline-item[data-side="left"] {
    justify-content: flex-end;
    padding-right: 30px;
}

.timeline-item[data-side="right"] {
    margin-left: 55%;
    padding-left: 30px;
}

.timeline-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ff7597;
    border: 2px solid #bb86fc;
    border-radius: 50%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(255, 117, 151, 0.8);
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    transform: translateX(-50%) scale(1.5);
    box-shadow: 0 0 20px rgba(255, 117, 151, 1);
}

.timeline-content {
    background: linear-gradient(135deg, rgba(187, 134, 252, 0.3), rgba(255, 117, 151, 0.2));
    border: 2px solid #bb86fc;
    border-radius: 10px;
    padding: 15px;
    text-align: left;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item.completed .timeline-content {
    background: linear-gradient(135deg, rgba(255, 117, 151, 0.3), rgba(255, 117, 151, 0.1));
    box-shadow: 0 0 10px rgba(255, 117, 151, 0.5);
}

.timeline-item.upcoming .timeline-content {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.3), rgba(123, 44, 191, 0.1));
    box-shadow: 0 0 5px rgba(187, 134, 252, 0.3);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(187, 134, 252, 0.8);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin: 0 0 5px;
}

.timeline-item.completed h3 {
    color: #ff7597;
    text-shadow: 0 0 8px rgba(255, 117, 151, 0.7);
}

.timeline-item.upcoming h3 {
    color: #bb86fc;
    text-shadow: 0 0 5px rgba(187, 134, 252, 0.5);
}

.timeline-content p {
    font-size: 1rem;
    color: #e0e0e0;
    text-shadow: 0 0 5px rgba(187, 134, 252, 0.5);
    margin: 0;
}

/* Vision Section */
.vision {
    text-align: center;
    padding: 40px 20px;
    background: rgba(10, 10, 10, 0.7);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(187, 134, 252, 0.5);
    margin: 20px 0;
    position: relative;
}

.vision::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('media/hive-pattern.png') repeat;
    opacity: 0.1;
    z-index: 0;
}

.vision h2, .vision p { position: relative; z-index: 1; }

/* Staking Section */
.staking {
    text-align: center;
    padding: 40px 20px;
    background: rgba(10, 10, 10, 0.7);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(187, 134, 252, 0.5);
    margin: 20px 0;
}

.staking-container {
    max-width: 600px;
    margin: 0 auto;
}

.staking h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #bb86fc;
    text-shadow: 0 0 15px rgba(187, 134, 252, 0.8);
    margin-bottom: 20px;
}

.staking-card {
    position: relative;
    background: linear-gradient(135deg, rgba(187, 134, 252, 0.3), rgba(255, 117, 151, 0.3));
    border: 2px solid #bb86fc;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(187, 134, 252, 0.7), inset 0 0 10px rgba(255, 117, 151, 0.3);
    animation: heartbeat 3s infinite ease-in-out;
    overflow: hidden;
}

.staking-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(187, 134, 252, 0.4) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
    animation: pulse-glow 4s infinite ease-in-out;
}

.staking-card p, .staking-card a { position: relative; z-index: 1; }

.staking-card p {
    font-size: 1.2rem;
    color: #e0e0e0;
    text-shadow: 0 0 5px rgba(187, 134, 252, 0.5);
    margin: 0 0 20px;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(187, 134, 252, 0.7), inset 0 0 10px rgba(255, 117, 151, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 0 30px rgba(187, 134, 252, 1), inset 0 0 15px rgba(255, 117, 151, 0.5); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Join Section */
.join {
    text-align: center;
    padding: 40px 20px;
    background: rgba(10, 10, 10, 0.7);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(187, 134, 252, 0.5);
    margin: 20px 0;
}

.dzyra-banner {
    display: block;
    max-width: 300px;
    margin: 20px auto;
    border: 2px solid #bb86fc;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(187, 134, 252, 0.8), 0 0 30px rgba(255, 117, 151, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dzyra-banner:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(187, 134, 252, 1), 0 0 40px rgba(255, 117, 151, 0.7);
}

/* Social Buttons */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #bb86fc;
    padding: 4px;
    background: rgba(10, 10, 10, 0.9);
    box-shadow: 0 0 10px rgba(187, 134, 252, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-button:hover .social-icon {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(187, 134, 252, 0.8), 0 0 20px rgba(255, 117, 151, 0.5);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: rgba(10, 10, 10, 0.8);
    border-top: 1px solid #bb86fc;
    margin-top: 20px;
}

/* Click-to-Copy */
.contract-address {
    word-break: break-all;
    max-width: 100%;
    color: #e0e0e0;
    text-shadow: 0 0 5px rgba(187, 134, 252, 0.5);
    font-size: 1rem;
    margin: 10px 0;
    padding: 0 5px;
}

.copy-address {
    color: #bb86fc;
    text-shadow: 0 0 5px rgba(187, 134, 252, 0.7);
    cursor: pointer;
    padding: 2px 6px;
    background: rgba(187, 134, 252, 0.2);
    border-radius: 4px;
    transition: background 0.3s ease, color 0.3s ease;
}

.copy-address:hover {
    background: #bb86fc;
    color: #0a0a0a;
    text-shadow: none;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    html { scroll-padding-top: 60px; }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    p { font-size: 1rem; }

    header { padding: 10px 15px; }

    nav { position: relative; }

    .hamburger { display: flex; }

    nav ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 100%;
        right: 0;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(20, 20, 20, 0.9));
        width: 200px;
        padding: 15px;
        border: 2px solid #bb86fc;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(187, 134, 252, 0.5);
        z-index: 10;
    }

    nav ul::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('media/tentacle-pattern.png') repeat;
        opacity: 0.1;
        z-index: -1;
    }

    nav ul.active { display: flex; }

    nav a {
        font-size: 1rem;
        padding: 10px;
        display: block;
        text-align: right;
        border-radius: 5px;
    }

    nav a:hover {
        color: #ff7597;
        text-shadow: 0 0 10px rgba(255, 117, 151, 0.7);
        background: rgba(187, 134, 252, 0.3);
    }

    nav a::after { bottom: 5px; }

    nav .stake-button {
        font-size: 1rem;
        padding: 8px 20px;
    }

    .intro, .ai-agents, .features, .infographic, .roadmap, .vision, .staking, .join {
        padding: 20px 10px;
        margin: 10px 0;
    }

    .video-container { padding: 5px; }

    .queen-video { border-radius: 8px; border: 2px solid #bb86fc; }

    .persuasion-poem {
        font-size: 0.9rem;
        max-width: 100%;
        padding: 0 5px;
    }

    .agent-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .agent-card { padding: 15px; }

    .features {
        padding: 20px 10px;
    }

    .features h2 {
        font-size: 1.8rem;
    }

    .features p {
        font-size: 1rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .infographic-container { padding: 0 10px; }

    .layer {
        padding: 15px;
    }

    .layer ul {
        padding: 0;
        max-width: 95%;
        margin: 5px auto;
    }

    .layer li {
        padding-left: 5px;
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .layer li:before {
        width: 15px;
        margin-right: 3px;
    }

    .layer-label { font-size: 1rem; }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        width: 100%;
        margin: 20px 0;
        padding-left: 35px;
        padding-right: 15px;
    }

    .timeline-item[data-side="left"], .timeline-item[data-side="right"] {
        justify-content: flex-start;
        margin-left: 0;
        padding-left: 35px;
    }

    .timeline-marker {
        left: 15px;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .timeline-item:hover .timeline-marker {
        transform: translate(-50%, -50%) scale(1.5);
    }

    .timeline-content {
        padding: 10px;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    .staking-card { padding: 15px; }

    .staking-card p { font-size: 1rem; }

    .stake-button {
        font-size: 1.1rem;
        padding: 10px 20px;
    }

    .dzyra-banner {
        max-width: 200px;
        margin: 15px auto;
        border: 2px solid #bb86fc;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        padding: 3px;
    }

    .contract-address {
        font-size: 0.9rem;
        padding: 0 10px;
        word-break: break-all;
        max-width: 100%;
    }
}