/* WOLF Brand Styles - Consistent across all pages */

:root {
    --primary-blue: #1e3a5f;
    --accent-blue: #3b82f6;
    --dark-bg: #0a0a0f;
    --card-bg: rgba(30, 58, 95, 0.3);
    --card-border: rgba(59, 130, 246, 0.2);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --glow-blue: rgba(59, 130, 246, 0.5);
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated background */
.brand-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.brand-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(30, 58, 95, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(30, 58, 95, 0.3) 0%, transparent 70%);
    animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-2%, -2%) scale(1.02); }
    66% { transform: translate(2%, 2%) scale(0.98); }
}

/* Container */
.brand-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Page Header */
.brand-header {
    text-align: center;
    margin-bottom: 40px;
}

.brand-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.brand-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Cards */
.brand-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.brand-card:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}

.brand-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--accent-blue);
    margin-bottom: 15px;
}

/* Buttons */
.brand-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.brand-btn:hover {
    transform: translateY(-2px);
    border-color: var(--accent-blue);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
}

.brand-btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    border: none;
}

.brand-btn-primary:hover {
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.brand-btn-success {
    background: linear-gradient(135deg, var(--success), #16a34a);
    border: none;
}

.brand-btn-danger {
    background: linear-gradient(135deg, var(--danger), #dc2626);
    border: none;
}

/* Tables */
.brand-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.brand-table th {
    text-align: left;
    padding: 12px 16px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-table td {
    padding: 16px;
    background: var(--card-bg);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.brand-table td:first-child {
    border-left: 1px solid var(--card-border);
    border-radius: 12px 0 0 12px;
}

.brand-table td:last-child {
    border-right: 1px solid var(--card-border);
    border-radius: 0 12px 12px 0;
}

.brand-table tr:hover td {
    border-color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.1);
}

/* Inputs */
.brand-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.brand-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.brand-input::placeholder {
    color: var(--text-muted);
}

/* Labels */
.brand-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}

/* Podium (for leaderboards) */
.brand-podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 40px;
}

.brand-podium-card {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.brand-podium-card.first {
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    transform: scale(1.1);
}

.brand-podium-card.second {
    border-color: #c0c0c0;
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.2);
}

.brand-podium-card.third {
    border-color: #cd7f32;
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.2);
}

.brand-podium-rank {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.brand-podium-card.first .brand-podium-rank { color: #ffd700; }
.brand-podium-card.second .brand-podium-rank { color: #c0c0c0; }
.brand-podium-card.third .brand-podium-rank { color: #cd7f32; }

.brand-podium-name {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.brand-podium-value {
    color: var(--accent-blue);
    font-weight: 600;
}

.brand-podium-prize {
    color: var(--success);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Status badges */
.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.brand-badge-success {
    background: rgba(34, 197, 94, 0.2);
    color: var(--success);
}

.brand-badge-warning {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.brand-badge-danger {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger);
}

/* Back link */
.brand-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 30px;
    transition: all 0.2s;
}

.brand-back:hover {
    gap: 12px;
}

/* Grid */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .brand-container {
        padding: 20px 15px;
    }

    .brand-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .brand-subtitle {
        font-size: 0.85rem;
    }
    
    /* Keep podium side by side on mobile */
    .brand-podium {
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    .brand-podium-card {
        padding: 15px 10px;
        border-radius: 12px;
        min-width: 90px;
        flex: 1;
    }
    
    .brand-podium-card.first {
        transform: scale(1.05);
    }

    .brand-podium-rank {
        font-size: 0.9rem;
        letter-spacing: 1px;
        margin-bottom: 6px;
    }

    .brand-podium-name {
        font-size: 0.85rem;
        margin-bottom: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-podium-value {
        font-size: 0.75rem;
    }

    .brand-podium-prize {
        font-size: 0.7rem;
        margin-top: 6px;
    }

    .brand-back {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 400px) {
    .brand-podium-card {
        padding: 12px 8px;
        min-width: 80px;
    }

    .brand-podium-rank {
        font-size: 0.75rem;
    }

    .brand-podium-name {
        font-size: 0.75rem;
    }

    .brand-podium-value {
        font-size: 0.65rem;
    }

    .brand-podium-prize {
        font-size: 0.6rem;
    }
}

