/* ====== GOD MODE STYLES ====== */

/* Activation Overlay */
.god-mode-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), rgba(0, 0, 0, 0.9));
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 1s;
    animation: godFadeIn 0.5s ease;
}

@keyframes godFadeIn {
    from { opacity: 0; backdrop-filter: blur(0); }
    to { opacity: 1; backdrop-filter: blur(10px); }
}

.god-mode-container {
    text-align: center;
    color: white;
    animation: godZoom 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes godZoom {
    0% { transform: scale(0) rotate(-180deg); opacity: 0; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

.god-crown {
    font-size: 150px;
    filter: drop-shadow(0 0 40px gold);
    animation: godCrownFloat 2s ease infinite;
    margin-bottom: 20px;
}

@keyframes godCrownFloat {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.god-title {
    font-size: 60px;
    font-weight: 900;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FF6B9D, #A855F7);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 8px;
    animation: godShimmer 2s linear infinite;
    text-shadow: 0 0 60px rgba(255, 215, 0, 0.5);
}

@keyframes godShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.god-subtitle {
    font-size: 28px;
    font-weight: 900;
    color: white;
    letter-spacing: 12px;
    text-shadow: 0 0 20px gold;
    margin-top: 8px;
}

.god-perks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.god-perk {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid rgba(255, 215, 0, 0.5);
    animation: godPerkSlide 0.6s ease backwards;
}

.god-perk:nth-child(1) { animation-delay: 0.5s; }
.god-perk:nth-child(2) { animation-delay: 0.6s; }
.god-perk:nth-child(3) { animation-delay: 0.7s; }
.god-perk:nth-child(4) { animation-delay: 0.8s; }
.god-perk:nth-child(5) { animation-delay: 0.9s; }
.god-perk:nth-child(6) { animation-delay: 1.0s; }

@keyframes godPerkSlide {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Persistent God Mode Badge */
.god-mode-badge {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF6B9D);
    background-size: 200%;
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    z-index: 250;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
    animation: godBadgeShimmer 3s linear infinite;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

@keyframes godBadgeShimmer {
    0% { background-position: 0% 50%; box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5); }
    50% { background-position: 200% 50%; box-shadow: 0 4px 30px rgba(255, 107, 157, 0.7); }
    100% { background-position: 0% 50%; box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5); }
}

.god-mode-badge:hover {
    transform: translateX(-50%) scale(1.1);
}

.gmb-crown {
    font-size: 16px;
    animation: crownWiggle 1s ease infinite;
}

@keyframes crownWiggle {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

/* God Panel Modal */
.god-panel-modal {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
    color: white;
    padding: 30px 24px;
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 2px solid gold;
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.3);
}

.god-panel-modal .modal-close {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.god-panel-header {
    text-align: center;
    margin-bottom: 24px;
}

.god-panel-crown {
    font-size: 60px;
    filter: drop-shadow(0 0 20px gold);
    animation: godCrownFloat 2s ease infinite;
    margin-bottom: 12px;
}

.god-panel-header h2 {
    font-size: 32px;
    background: linear-gradient(90deg, #FFD700, #FF6B9D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 4px;
    margin-bottom: 4px;
}

.god-panel-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.god-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.god-action {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 8px;
    color: white;
    cursor: pointer;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    transition: var(--transition-fast);
    text-align: center;
}

.god-action:hover {
    background: linear-gradient(135deg, #FFD700, #FF6B9D);
    border-color: gold;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.god-icon {
    font-size: 30px;
    margin-bottom: 4px;
}

.god-divider {
    height: 1px;
    background: rgba(255, 215, 0, 0.3);
    margin: 20px 0;
}

.god-panel-modal .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 215, 0, 0.3);
}

.god-panel-modal .btn-secondary:hover {
    background: gold;
    color: black;
}

.god-panel-modal .btn-secondary.danger {
    border-color: rgba(239, 68, 68, 0.5);
}

.god-panel-modal .btn-secondary.danger:hover {
    background: #EF4444;
    color: white;
}
