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

body {
    font-family: 'Fredoka', sans-serif;
    background: #003366;
    color: #fff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

@keyframes epicBubbles {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.3; 
    }
    50% { 
        transform: scale(1.2) rotate(5deg); 
        opacity: 0.5; 
    }
}

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

/* HEADER - EPIC GAMING STYLE */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.95) 0%, rgba(67, 56, 202, 0.9) 100%);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 12px 20px;
    border: 4px solid #fbbf24;
    box-shadow: 
        0 10px 40px rgba(251, 191, 36, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 0 0 2px rgba(251, 191, 36, 0.6),
        0 0 30px rgba(251, 191, 36, 0.3);
    transform: perspective(1000px) translateZ(0);
    transition: all 0.3s ease;
    animation: headerFloat 3s ease-in-out infinite;
}

@keyframes headerFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

.header:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 50px rgba(251, 191, 36, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        0 0 0 3px rgba(251, 191, 36, 0.8),
        0 0 40px rgba(251, 191, 36, 0.5);
}

/* LOGO CONTAINER WITH IMAGE AND TEXT */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    animation: logoFloat 2.5s ease-in-out infinite;
}

.logo-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(251, 191, 36, 0.8));
    animation: logoFloat 2.5s ease-in-out infinite;
}

.logo-title {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: 'Black Ops One', cursive;
    color: #fbbf24;
    text-shadow: 
        3px 3px 0 #78350f,
        -2px -2px 0 #78350f,
        2px -2px 0 #78350f,
        -2px 2px 0 #78350f,
        0 0 20px rgba(251, 191, 36, 0.8),
        0 5px 15px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
    line-height: 1;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(0deg); }
}

/* WALLET BUTTON - MEME STYLE */
.wallet-button {
    background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
    background-size: 100% 200%;
    border: 4px solid #78350f;
    color: #78350f;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 900;
    font-family: 'Lilita One', cursive;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 6px 0 #78350f,
        0 10px 25px rgba(0, 0, 0, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
    transform: translateY(0);
    font-size: 0.9rem;
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 0% 100%; }
}

.wallet-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 9px 0 #78350f,
        0 15px 35px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(251, 191, 36, 0.6);
}

.wallet-button:active {
    transform: translateY(4px);
    box-shadow: 
        0 2px 0 #78350f,
        0 4px 15px rgba(0, 0, 0, 0.4);
}

/* MAIN TITLE - ULTRA MEME */
.slogan {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Black Ops One', cursive;
    margin-bottom: 20px;
    color: #fbbf24;
    text-shadow: 
        4px 4px 0 #78350f,
        -2px -2px 0 #78350f,
        2px -2px 0 #78350f,
        -2px 2px 0 #78350f,
        0 0 30px rgba(251, 191, 36, 1),
        0 8px 20px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    transform: rotate(-1deg);
    line-height: 1.2;
}

.sub-slogan {
    font-size: 1rem;
    font-family: 'Permanent Marker', cursive;
    color: #ef4444;
    text-shadow: 
        2px 2px 0 #7f1d1d,
        -1px -1px 0 #7f1d1d,
        0 0 15px rgba(239, 68, 68, 0.8);
    display: block;
    margin-top: 5px;
}

/* MAIN CONTENT */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.box {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.95) 0%, rgba(67, 56, 202, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 20px;
    border: 4px solid #fbbf24;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 0 0 2px rgba(251, 191, 36, 0.6),
        0 0 25px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(251, 191, 36, 0.1) 50%, transparent 70%);
    animation: boxShine 3s linear infinite;
}

@keyframes boxShine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.box:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        0 0 0 3px rgba(251, 191, 36, 0.8),
        0 0 35px rgba(251, 191, 36, 0.5);
}

/* BOX TITLE */
.box-title {
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 
        3px 3px 0 #78350f,
        -1px -1px 0 #78350f,
        0 0 20px rgba(251, 191, 36, 0.8);
    position: relative;
    z-index: 1;
}

/* DATA ROWS - EPIC STYLE */
.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(20, 18, 58, 0.95) 0%, rgba(49, 46, 129, 0.9) 100%);
    border-radius: 15px;
    border-left: 5px solid #fbbf24;
    border-right: 2px solid rgba(251, 191, 36, 0.3);
    transition: all 0.2s ease;
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.data-row.highlight {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(220, 38, 38, 0.3) 100%);
    border-left-color: #ef4444;
    animation: rowPulse 2s ease-in-out infinite;
}

@keyframes rowPulse {
    0%, 100% { 
        box-shadow: 
            inset 0 2px 0 rgba(255, 255, 255, 0.15),
            0 4px 10px rgba(0, 0, 0, 0.3),
            0 0 0 rgba(239, 68, 68, 0);
    }
    50% { 
        box-shadow: 
            inset 0 2px 0 rgba(255, 255, 255, 0.15),
            0 4px 10px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(239, 68, 68, 0.6);
    }
}

.data-row:hover {
    background: linear-gradient(135deg, rgba(49, 46, 129, 1) 0%, rgba(67, 56, 202, 1) 100%);
    transform: translateX(5px) scale(1.02);
    border-left-width: 7px;
}

.data-row .name {
    color: #fff;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.data-row .value {
    color: #fbbf24;
    font-weight: 900;
    font-family: 'Lilita One', cursive;
    font-size: 1.3rem;
    text-shadow: 
        2px 2px 0 #78350f,
        0 0 15px rgba(251, 191, 36, 0.6);
}

/* INPUT - GAMING STYLE */
.input-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.input-field {
    width: 100%;
    padding: 14px 80px 14px 15px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    border: 3px solid #fbbf24;
    border-radius: 20px;
    color: #fbbf24;
    font-size: 1.1rem;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 3px 8px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(251, 191, 36, 0.3);
}

.input-field::placeholder {
    color: rgba(251, 191, 36, 0.5);
    font-weight: 600;
}

.input-field:focus {
    border-color: #f59e0b;
    box-shadow: 
        inset 0 3px 8px rgba(0, 0, 0, 0.5),
        0 0 0 3px rgba(251, 191, 36, 0.5),
        0 0 25px rgba(251, 191, 36, 0.4);
    transform: scale(1.02);
}

.input-suffix {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #fbbf24;
    font-weight: 900;
    font-family: 'Lilita One', cursive;
    font-size: 1rem;
    text-shadow: 
        2px 2px 0 #78350f,
        0 0 10px rgba(251, 191, 36, 0.8);
}

/* BUTTONS - MAXIMUM MEME */
.btn-primary {
    width: 100%;
    padding: 16px;
    background: linear-gradient(180deg, #10b981 0%, #059669 50%, #10b981 100%);
    background-size: 100% 200%;
    border: 4px solid #065f46;
    color: #fff;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 900;
    font-family: 'Black Ops One', cursive;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 6px 0 #065f46,
        0 10px 25px rgba(0, 0, 0, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(0);
    animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { 
        background-position: 0% 0%;
        box-shadow: 
            0 6px 0 #065f46,
            0 10px 25px rgba(0, 0, 0, 0.4),
            0 0 0 rgba(16, 185, 129, 0);
    }
    50% { 
        background-position: 0% 100%;
        box-shadow: 
            0 6px 0 #065f46,
            0 10px 25px rgba(0, 0, 0, 0.4),
            0 0 30px rgba(16, 185, 129, 0.6);
    }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 9px 0 #065f46,
        0 15px 35px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(16, 185, 129, 0.8);
}

.btn-primary:active {
    transform: translateY(4px);
    box-shadow: 
        0 2px 0 #065f46,
        0 4px 15px rgba(0, 0, 0, 0.4);
}

.action-wrapper {
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.btn-secondary {
    padding: 14px;
    border: 4px solid;
    border-radius: 15px;
    font-weight: 900;
    font-family: 'Lilita One', cursive;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.btn-secondary.compound {
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 50%, #3b82f6 100%);
    background-size: 100% 200%;
    border-color: #1e40af;
    color: #fff;
    box-shadow: 
        0 6px 0 #1e40af,
        0 10px 25px rgba(0, 0, 0, 0.4);
}

.btn-secondary.sell {
    background: linear-gradient(180deg, #ef4444 0%, #dc2626 50%, #ef4444 100%);
    background-size: 100% 200%;
    border-color: #7f1d1d;
    color: #fff;
    box-shadow: 
        0 6px 0 #7f1d1d,
        0 10px 25px rgba(0, 0, 0, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
}

.btn-secondary:active {
    transform: translateY(4px);
}

/* REFERRAL */
.referral {
    margin-bottom: 25px;
}

.referral h1 {
    font-size: 1.2rem;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 8px;
    font-family: 'Bangers', cursive;
    text-shadow: 
        3px 3px 0 #78350f,
        0 0 15px rgba(251, 191, 36, 0.8);
}

.referral p {
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: 'Fredoka', sans-serif;
    line-height: 1.4;
}

.ref-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.referral-link {
    flex: 1;
    padding: 12px 15px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    border: 3px solid rgba(251, 191, 36, 0.6);
    border-radius: 15px;
    color: #fbbf24;
    font-size: 0.8rem;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.4);
}

.copy-button {
    padding: 12px 18px;
    background: linear-gradient(180deg, #a855f7 0%, #9333ea 50%, #a855f7 100%);
    background-size: 100% 200%;
    border: 4px solid #581c87;
    color: #fff;
    border-radius: 15px;
    font-weight: 900;
    font-family: 'Lilita One', cursive;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: 
        0 5px 0 #581c87,
        0 8px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
}

.copy-button:hover {
    transform: translateY(-2px);
    background-position: 0% 100%;
    box-shadow: 
        0 7px 0 #581c87,
        0 10px 25px rgba(0, 0, 0, 0.4);
}

.copy-button:active {
    transform: translateY(3px);
    box-shadow: 
        0 2px 0 #581c87,
        0 4px 15px rgba(0, 0, 0, 0.3);
}

/* GOLD ANIMATION - CRAZY SPINNING */
.contract-info {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.gold-animation {
    width: 130px;
    height: 130px;
    background: radial-gradient(circle at 30% 30%, #fde047, #fbbf24 40%, #f59e0b 70%, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: epicSpin 4s linear infinite;
    box-shadow: 
        0 0 40px rgba(251, 191, 36, 0.8),
        inset 0 0 20px rgba(254, 240, 138, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(251, 191, 36, 0.6);
}

@keyframes epicSpin {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(360deg) scale(1); }
}

.stats-logo {
    width: 80%;
    height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(251, 191, 36, 1));
    animation: none;
    position: relative;
    z-index: 2;
}

.gold-coin {
    font-size: 4rem;
    animation: coinFlip 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 1));
}

@keyframes coinFlip {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

.sparkles {
    position: absolute;
    font-size: 2rem;
    animation: sparkleFloat 3s ease-in-out infinite;
}

@keyframes sparkleFloat {
    0%, 100% { 
        top: -15px;
        right: -15px;
        opacity: 0.8;
    }
    50% { 
        top: -18px;
        right: -18px;
        opacity: 1;
    }
}

.contract-info .data {
    flex: 1;
}

.contract-info h1 {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-family: 'Bangers', cursive;
    text-shadow: 
        3px 3px 0 #78350f,
        0 0 15px rgba(251, 191, 36, 0.8);
}

/* TOKEN INFO */
.token-info {
    margin-top: 20px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(20, 18, 58, 0.95) 0%, rgba(49, 46, 129, 0.9) 100%);
    border-radius: 15px;
    border: 3px solid rgba(251, 191, 36, 0.5);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.token-info h2 {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-family: 'Lilita One', cursive;
    text-shadow: 
        2px 2px 0 #78350f,
        0 0 10px rgba(251, 191, 36, 0.6);
}

.contract-address {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    border-radius: 10px;
    border: 2px solid rgba(251, 191, 36, 0.4);
}

.address-text {
    flex: 1;
    color: #fbbf24;
    font-family: monospace;
    font-size: 0.75rem;
    font-weight: 700;
    word-break: break-all;
}

.copy-addr-button {
    background: rgba(251, 191, 36, 0.4);
    border: 2px solid rgba(251, 191, 36, 0.6);
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.copy-addr-button:hover {
    background: rgba(251, 191, 36, 0.6);
    transform: scale(1.15) rotate(5deg);
}

.explorer-link {
    display: inline-block;
    color: #fbbf24;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Fredoka', sans-serif;
    transition: all 0.3s ease;
}

.explorer-link:hover {
    color: #f59e0b;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
}

/* STATUS */
.status-connected {
    background: linear-gradient(180deg, #10b981 0%, #059669 100%) !important;
    border-color: #065f46 !important;
    animation: connectedPulse 2s ease-in-out infinite !important;
}

@keyframes connectedPulse {
    0%, 100% { box-shadow: 0 6px 0 #065f46, 0 0 0 rgba(16, 185, 129, 0); }
    50% { box-shadow: 0 6px 0 #065f46, 0 0 25px rgba(16, 185, 129, 0.8); }
}

/* LOADING */
.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '⏳';
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 2rem;
    transform: translate(-50%, -50%);
    animation: loadingSpin 1s linear infinite;
}

@keyframes loadingSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* NOTIFICATION - EPIC POPUP */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.98) 0%, rgba(67, 56, 202, 0.95) 100%);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    border: 4px solid #fbbf24;
    color: #fff;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    font-size: 0.95rem;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(-20px) scale(0.8);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 0 30px rgba(251, 191, 36, 0.4);
    z-index: 1000;
}

.notification.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.notification.error {
    border-color: #ef4444;
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.98) 0%, rgba(153, 27, 27, 0.95) 100%);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(239, 68, 68, 0.6);
}

/* FOOTER – verbesserte Zentrierung */
.footer {
    margin-top: 40px;
    padding: 30px 0 20px;
    border-top: 3px solid rgba(251, 191, 36, 0.3);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.8) 0%, rgba(67, 56, 202, 0.7) 100%);
    border: 3px solid #fbbf24;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: #f59e0b;
    box-shadow: 
        0 8px 25px rgba(251, 191, 36, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.social-icon {
    font-size: 1.5rem;
    line-height: 1;
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
}

.social-text {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.footer-text {
    text-align: center;
}

.footer-text p {
    margin: 5px 0;
    color: #fbbf24;
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 
        2px 2px 0 #78350f,
        0 0 10px rgba(251, 191, 36, 0.5);
}

.footer-small {
    font-size: 0.8rem !important;
    color: rgba(251, 191, 36, 0.7) !important;
    font-weight: 400 !important;
    text-shadow: none !important;
    margin-top: 10px !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .container { padding: 15px; }
    .main-content { grid-template-columns: 1fr; gap: 15px; }
    .header { flex-direction: column; gap: 12px; padding: 12px; }
    
    .logo-container {
        flex-direction: row;
        gap: 12px;
    }
    .logo-image { height: 50px; max-width: 60px; }
    .logo-icon { font-size: 2.5rem; }
    .logo-title { font-size: 1.6rem; letter-spacing: 2px; }
    .wallet-button { font-size: 0.8rem; padding: 8px 16px; }
    
    .slogan { font-size: 1.4rem; }
    .sub-slogan { font-size: 0.85rem; }
    
    .box { padding: 18px; }
    .box-title { font-size: 1.3rem; }
    
    .contract-info { 
        flex-direction: row;
        justify-content: center;
    }
    .gold-animation { 
        width: 110px; 
        height: 110px;
        flex-shrink: 0;
    }
    .stats-logo {
        width: 75%;
        height: 75%;
    }
    .gold-coin { font-size: 3.5rem; }
    
    .contract-info h1 {
        font-size: 1.3rem;
    }
    
    .ref-wrapper { flex-direction: column; }
    .action-buttons { grid-template-columns: 1fr; }
    
    .data-row { 
        padding: 12px 15px;
    }
    .data-row .name { 
        font-size: 0.8rem;
    }
    .data-row .value { 
        font-size: 1.2rem;
    }
    
    .input-field {
        font-size: 1rem;
        padding: 12px 70px 12px 15px;
    }
    
    .footer {
        margin-top: 30px;
        padding: 20px 0 15px;
    }
    
    .social-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .social-icon {
        font-size: 1.3rem;
    }
    
    .footer-text p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .slogan { font-size: 1.2rem; }
    .sub-slogan { font-size: 0.75rem; }
    .logo-title { font-size: 1.3rem; letter-spacing: 1px; }
    .logo-image { height: 45px; max-width: 50px; }
    .logo-icon { font-size: 2rem; }
    
    .contract-info {
        flex-direction: column;
        text-align: center;
    }
    
    .gold-animation { 
        width: 100px; 
        height: 100px; 
    }
    
    .data-row .name { 
        font-size: 0.75rem;
    }
    .data-row .value { 
        font-size: 1.1rem;
    }
    
    .footer {
        margin-top: 20px;
        padding: 15px 0 10px;
    }
    
    .social-link {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .social-icon {
        font-size: 1.2rem;
    }
    
    .social-text {
        font-size: 0.85rem;
    }
    
    .footer-text p {
        font-size: 0.8rem;
    }
    
    .footer-small {
        font-size: 0.7rem !important;
    }
}
/* === HOW TO PLAY PAGE SPECIFIC STYLES === */

.how-to-play-box {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.97) 0%, rgba(67, 56, 202, 0.92) 100%);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    padding: 30px;
    border: 4px solid #fbbf24;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        inset 0 3px 0 rgba(255, 255, 255, 0.25),
        0 0 0 3px rgba(251, 191, 36, 0.5),
        0 0 35px rgba(251, 191, 36, 0.3);
    margin: 0 10px 30px;
}

.how-to-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
    padding: 20px;
    background: rgba(20, 18, 58, 0.7);
    border-radius: 18px;
    border-left: 6px solid #fbbf24;
    transition: all 0.25s ease;
}

.how-to-step:hover {
    transform: translateX(8px);
    background: rgba(30, 27, 75, 0.9);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.25);
}

.step-number {
    flex: 0 0 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    font-weight: 900;
    font-family: 'Black Ops One', cursive;
    color: #78350f;
    text-shadow: 2px 2px 0 #fff, 0 0 15px rgba(120, 53, 15, 0.6);
    box-shadow: 
        0 6px 0 #b45309,
        inset 0 -3px 0 #d97706,
        0 0 20px rgba(251, 191, 36, 0.5);
}

.how-to-step h3 {
    color: #fbbf24;
    font-family: 'Bangers', cursive;
    font-size: 1.6rem;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 0 #78350f, 0 0 12px rgba(251, 191, 36, 0.7);
}

.how-to-step p {
    color: #e0e0ff;
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0;
}

.how-to-step strong {
    color: #fbbf24;
    font-weight: 700;
}

.stats-overview {
    margin: 35px 0 25px;
    padding: 20px;
    background: rgba(20, 18, 58, 0.75);
    border-radius: 18px;
    border: 3px solid rgba(251, 191, 36, 0.5);
}

.stats-overview h3 {
    color: #fbbf24;
    font-family: 'Bangers', cursive;
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 18px;
    text-shadow: 3px 3px 0 #78350f, 0 0 15px rgba(251, 191, 36, 0.8);
}

.warning-box {
    margin-top: 30px;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.85) 0%, rgba(153, 27, 27, 0.8) 100%);
    border: 4px solid #ef4444;
    border-radius: 18px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(239, 68, 68, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.warning-box p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffebeb;
}

.warning-box strong {
    color: #fbbf24;
    font-size: 1.25rem;
}

.wallet-button[href="index.html"] {
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 50%, #3b82f6 100%);
    border: 4px solid #1e40af;
    color: white;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 900;
    font-family: 'Lilita One', cursive;
    box-shadow: 0 6px 0 #1e40af, 0 10px 25px rgba(0,0,0,0.4);
    transition: all 0.2s ease;
}

.wallet-button[href="index.html"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 0 #1e40af, 0 15px 35px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .how-to-play-box {
        padding: 24px 18px;
    }
    
    .how-to-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .step-number {
        margin-bottom: 10px;
    }
    
    .stats-overview {
        margin: 25px 0;
    }
}
.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-button {
    background: linear-gradient(180deg, #a855f7 0%, #9333ea 50%, #a855f7 100%);
    border: 3px solid #6b21a8;
    color: white;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 900;
    font-family: 'Lilita One', cursive;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 5px 0 #581c87,
        0 8px 20px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}

.info-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 0 #581c87,
        0 12px 30px rgba(0,0,0,0.4);
    background-position: 0% 100%;
}

.info-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #581c87;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }
    
    .header-buttons {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    
    .info-button {
        padding: 9px 14px;
        font-size: 0.85rem;
    }
}