/* style.css - $SHIB Reward Claim Styling */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

canvas {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.container.mainbl {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.area {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.image {
    text-align: center;
    margin-bottom: 30px;
}

.image img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.5));
    animation: float 3s ease-in-out infinite;
}

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

.maintitle {
    text-align: center;
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF8C00, #FFD700, #FF6347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    letter-spacing: -1px;
    text-shadow: none;
}

.btn-row {
    width: 100%;
    margin-bottom: 50px;
    text-align: center;
}

.interact-button {
    display: inline-block;
    padding: 16px 48px;
    margin: 10px 15px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #FF8C00, #FF6347);
    box-shadow: 0 4px 20px rgba(255, 99, 71, 0.4);
}

.interact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 99, 71, 0.6);
}

.interact-button:active {
    transform: translateY(0);
}

.interact-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.interact-button.connected {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.4);
}

.interact-button.success {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.6);
    animation: pulse-success 2s infinite;
}

@keyframes pulse-success {
    0%, 100% { box-shadow: 0 4px 20px rgba(40, 167, 69, 0.4); }
    50% { box-shadow: 0 4px 40px rgba(40, 167, 69, 0.8); }
}

#claimButton {
    display: none;
}

.types {
    width: 100%;
    margin-top: 20px;
    gap: 30px;
}

.types .col-lg-4 {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.types .col-lg-4:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 140, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.types .title {
    font-size: 22px;
    font-weight: 700;
    color: #FF8C00;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.types .subtext {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 992px) {
    .maintitle {
        font-size: 36px;
    }
    
    .interact-button {
        padding: 14px 36px;
        font-size: 14px;
    }
    
    .types .col-lg-4 {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .maintitle {
        font-size: 28px;
    }
    
    .image img {
        max-width: 120px;
    }
    
    .interact-button {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}
