/* Coin Pusher World - Drops Premium Theme */
:root {
    --primary-bg: #0f0c29;
    --secondary-bg: #302b63;
    --accent-color: #ffd700;
    --text-color: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.05);
    --twitch-purple: #9146FF;
    --success-green: #2ecc71;
    --danger-red: #e74c3c;
}

body {
    background: linear-gradient(to bottom, var(--primary-bg), #24243e);
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e1545 0%, #000000 100%);
    border-radius: 12px;
    padding: 60px 40px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(145, 70, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.live-badge {
    display: inline-block;
    background-color: #e91e63;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(233, 30, 99, 0); }
    100% { box-shadow: 0 0 0 0 rgba(233, 30, 99, 0); }
}

.hero-logo {
    max-width: 150px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.hero-title {
    font-size: 3rem;
    margin: 0 0 10px 0;
    background: linear-gradient(to right, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    color: #b0b0b0;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

/* Steps */
.steps-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(5px);
}

.step-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.step-icon {
    font-size: 2rem;
    color: #ffd700;
    margin-right: 15px;
    width: 50px;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.step-content h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: white;
    font-weight: 700;
}

.step-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
}

/* Section Headers */
.section-header {
    color: gold;
    border-bottom: 2px solid rgba(255,215,0,0.3);
    padding-bottom: 15px;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.8em;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Drops List */
.drops-section {
    background: #1e1545;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.drop-card {
    display: flex;
    background: rgba(42, 26, 108, 0.5);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.drop-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: rgba(42, 26, 108, 0.7);
}

.drop-image {
    width: 150px;
    background: #140e38;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.drop-image img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.drop-image i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
}

.drop-details {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.drop-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.drop-meta {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
}

.drop-meta i {
    color: #ffd700;
    margin-right: 5px;
}

.drop-action {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    min-width: 180px;
    border-left: 1px solid rgba(255,255,255,0.05);
}

/* Buttons */
.claim-btn {
    background: linear-gradient(to right, #9146FF, #7D2DF7);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.claim-btn:hover {
    background: linear-gradient(to right, #ffd700, #ffca00);
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.claim-btn:disabled {
    background: #555;
    color: #888;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.claimed-badge {
    color: #2ecc71;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 204, 113, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

/* Admin Styles */
.admin-section { 
    background: #1e1545; 
    border-radius: 12px; 
    padding: 30px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); 
    margin-bottom: 30px; 
    border: 1px solid rgba(255, 215, 0, 0.1); 
    position: relative;
    overflow: hidden;
}

.admin-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 5px;
    background: linear-gradient(90deg, #9146FF, #FFD700);
}

.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 8px; font-weight: 600; color: #ffd700; }
.form-input, select { 
    width: 100%; 
    padding: 12px; 
    background: rgba(0, 0, 0, 0.4); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 6px; 
    color: white; 
    font-size: 1rem; 
}
.form-input:focus { outline: none; border-color: #9146FF; }

.submit-btn { 
    background: linear-gradient(135deg, #6200ea 0%, #3700b3 100%);
    color: white; 
    border: none; 
    padding: 12px 24px; 
    border-radius: 6px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all 0.3s;
    border: 1px solid rgba(145, 70, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.submit-btn:hover { 
    background: linear-gradient(135deg, #7c4dff 0%, #651fff 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(98, 0, 234, 0.4);
}

.drops-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.drops-table th, .drops-table td { padding: 12px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); }
.drops-table th { color: #ffd700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
.action-icon { color: #e74c3c; cursor: pointer; transition: color 0.2s; }
.action-icon:hover { color: #ff6b6b; }

.row-flex { display: flex; gap: 20px; flex-wrap: wrap; }
.col-half { flex: 1; min-width: 300px; }

small { color: #aaa; font-size: 0.8rem; display: block; margin-top: 5px; }

/* Responsive */
@media (max-width: 768px) {
    .drop-card {
        flex-direction: column;
    }
    .drop-image {
        width: 100%;
        height: 120px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .drop-action {
        width: 100%;
        padding: 15px;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    .hero-title {
        font-size: 2rem;
    }
}
