/* Admin Login Styles */
.golden-admin {
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700, #ffed4e) !important;
    background-size: 400% 400% !important;
    animation: golden-gradient 3s ease infinite;
    border: 2px solid #ffd700 !important;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6) !important;
}

@keyframes golden-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.golden-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #ffd700, #ffed4e);
    border-radius: 50%;
    pointer-events: none;
    animation: float-up 3s ease-out forwards;
    z-index: 1000;
}

@keyframes float-up {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-200px) scale(0);
        opacity: 0;
    }
}

.admin-success-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    z-index: 1001;
    animation: success-pulse 2s ease-in-out;
}

@keyframes success-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.admin-success-message i {
    font-size: 2em;
    margin-bottom: 10px;
    animation: crown-spin 2s linear infinite;
}

@keyframes crown-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Error Field Styles */
.error-field {
    border: 2px solid #ff4757 !important;
    background-color: rgba(255, 71, 87, 0.1) !important;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 20%, 40%, 60%, 80%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
}

.field-error {
    display: flex;
    align-items: center;
    color: #ff4757;
    font-size: 0.9em;
    margin-top: 5px;
    padding: 8px 12px;
    background: rgba(255, 71, 87, 0.1);
    border-radius: 5px;
    border: 1px solid rgba(255, 71, 87, 0.3);
}

.field-error i {
    margin-right: 8px;
    font-size: 1.1em;
}

/* Locked Button Styles */
.locked-button {
    background: #6c757d !important;
    color: #fff !important;
    cursor: not-allowed !important;
    opacity: 0.7 !important;
    transform: none !important;
}

.locked-button:hover {
    background: #6c757d !important;
    transform: none !important;
}

/* Golden User Display */
.golden-user {
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    background-size: 300% 300%;
    color: #000 !important;
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #ffd700;
    animation: golden-glow 3s ease-in-out infinite;
}

@keyframes golden-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
        background-position: 0% 50%;
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.9);
        background-position: 100% 50%;
    }
}

.golden-user.shining {
    animation: intense-shine 1s ease-in-out;
}

@keyframes intense-shine {
    0% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 60px rgba(255, 215, 0, 1);
    }
    100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }
}

/* Draggable Home Button */
.draggable-home {
    position: fixed;
    top: 100px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #01257D, #00FFFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.draggable-home:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 255, 255, 0.5);
}

.draggable-home a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.draggable-home:active {
    cursor: grabbing;
}

/* Fullscreen Button for Games */
.fullscreen-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(1, 37, 125, 0.9);
    color: #00FFFF;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    z-index: 100;
    transition: all 0.3s ease;
}

.fullscreen-btn:hover {
    background: #01257D;
    transform: scale(1.1);
}

/* Game Container Fullscreen Styles */
.game-container:fullscreen {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-container:fullscreen canvas {
    max-width: 100vw !important;
    max-height: 100vh !important;
    width: auto !important;
    height: auto !important;
}

/* Hire Page Specific Styles */
.hire-hero {
    background: linear-gradient(135deg, #01257D 0%, #001a4d 50%, #000d26 100%);
    min-height: 60vh;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--electric-blue);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--electric-blue);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--electric-blue);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--electric-blue);
    color: var(--primary-navy);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--electric-blue);
    margin: 1rem 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.pricing-features i {
    margin-right: 0.5rem;
    width: 20px;
}

.fa-check {
    color: #27ae60;
}

.fa-times {
    color: #e74c3c;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--electric-blue);
    margin-right: 1rem;
    width: 30px;
}

.contact-method h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-light);
}

.contact-method p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}