/* ========================================
   ADDITIONAL PAGE STYLES
   ======================================== */

/* Page Hero */
.page-hero {
    padding: 120px 16px 60px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(10, 14, 26, 0.75), rgba(220, 38, 38, 0.25), rgba(251, 191, 36, 0.12)),
        url('../images/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero.events-hero {
    background:
        linear-gradient(135deg, rgba(10, 14, 26, 0.78), rgba(220, 38, 38, 0.22), rgba(251, 191, 36, 0.12)),
        url('../images/events-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-title {
    font-size: clamp(32px, 8vw, 56px);
    font-weight: 900;
    background: linear-gradient(135deg, #dc2626, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.page-desc {
    color: #94a3b8;
    font-size: 16px;
}

/* Diamond Grid */
.diamond-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.diamond-card {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.4));
    border: 1px solid #1e293b;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.diamond-card:hover {
    border-color: #dc2626;
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.4);
}

.diamond-card.popular {
    border-color: #fbbf24;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #0a0e1a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.diamond-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.diamond-card h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

.bonus {
    color: #22c55e;
    font-size: 14px;
    margin-bottom: 15px;
}

.diamond-total {
    background: rgba(30, 41, 59, 0.5);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.diamond-total strong {
    color: #fbbf24;
    font-family: 'Orbitron', sans-serif;
}

.diamond-price {
    font-size: 24px;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}

/* Codes Grid */
.codes-grid-4, .codes-grid-3 {
    display: grid;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.codes-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.codes-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.expires {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 12px;
}

.code-badge.special {
    background: #fbbf24;
    color: #0a0e1a;
}

/* Redeem Box */
.redeem-box {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.4));
    border: 1px solid #dc2626;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.3);
}

.redeem-box h2 {
    margin-bottom: 20px;
}

.redeem-input {
    width: 100%;
    padding: 16px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    text-align: center;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.redeem-input:focus {
    outline: none;
    border-color: #dc2626;
}

.redeem-note {
    color: #64748b;
    font-size: 14px;
    margin-top: 12px;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.step-card {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.4));
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.step-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.step-num {
    width: 30px;
    height: 30px;
    background: #dc2626;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 700;
}

@media (max-width: 600px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Outfits Grid */
.outfits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.outfit-card {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.4));
    border: 1px solid #1e293b;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.outfit-card:hover {
    border-color: #dc2626;
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.4);
    transform: translateY(-5px);
}

.outfit-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
}

.outfit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.outfit-card:hover .outfit-image img {
    transform: scale(1.1);
}

.outfit-emoji {
    font-size: 80px;
}

.rarity {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.rarity.legendary { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #0a0e1a; }
.rarity.mythic { background: linear-gradient(135deg, #3b82f6, #06b6d4); color: white; }
.rarity.epic { background: linear-gradient(135deg, #22c55e, #10b981); color: white; }

.free-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #22c55e;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.outfit-info {
    padding: 20px;
}

.outfit-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.stars {
    color: #fbbf24;
    margin-bottom: 10px;
}

.outfit-info p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Price Compare */
.price-compare {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.old-price {
    color: #64748b;
    text-decoration: line-through;
    font-size: 18px;
}

.new-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #22c55e;
}

/* Events */
.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 24px;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.upcoming-icon {
    font-size: 24px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.event-card {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.4));
    border: 1px solid #1e293b;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.event-card.live {
    border-color: rgba(34, 197, 94, 0.5);
}

.event-card:hover {
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.event-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.event-badge.live { background: #22c55e; color: white; }
.event-badge.upcoming { background: rgba(251, 191, 36, 0.2); color: #fbbf24; }

.event-players {
    color: #94a3b8;
    font-size: 13px;
}

.event-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.event-card > p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 15px;
}

.event-dates {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 15px;
}

.event-rewards {
    background: rgba(30, 41, 59, 0.5);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.event-rewards h4 {
    font-size: 14px;
    margin-bottom: 10px;
}

.reward-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.reward-tags span {
    background: rgba(220, 38, 38, 0.2);
    color: #dc2626;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.reward-tags.gold span {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

/* Daily Grid */
.daily-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.daily-card {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.4));
    border: 1px solid #1e293b;
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
}

.daily-card.claimed {
    border-color: rgba(34, 197, 94, 0.5);
    background: rgba(34, 197, 94, 0.1);
}

.daily-card.special {
    border-color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

.day {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 5px;
}

.reward {
    font-weight: 700;
    font-size: 14px;
}

@media (max-width: 700px) {
    .daily-grid { grid-template-columns: repeat(4, 1fr); }
    .events-grid { grid-template-columns: 1fr; }
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.info-card {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.4));
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.info-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.info-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.info-card p {
    color: #94a3b8;
    font-size: 13px;
}

@media (max-width: 500px) {
    .info-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .info-card { padding: 12px 8px; }
    .info-icon { font-size: 28px; }
    .info-card h3 { font-size: 12px; }
    .info-card p { display: none; }
}
