/* css/auth.css */
body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    position: relative;
}

/* Gradient Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0a0a0a, #1f1f1f, #2d1547);
    z-index: -2;
}

/* PNG Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/cloud-overlay.png') center/cover no-repeat;
    opacity: 0.3;
    z-index: -1;
}

/* Glow Effect */
.glow-text {
    text-shadow: 
        0 0 20px rgba(96, 165, 250, 1),
        0 0 40px rgba(96, 165, 250, 0.8),
        0 0 60px rgba(147, 51, 234, 0.7);
}

/* Footer */
footer {
    backdrop-filter: blur(5px);
    z-index: 10;
}

/* Talent Buttons */
.talent-minus, .talent-plus {
    width: 24px;
    height: 24px;
    line-height: 1;
}

/* Sect Buttons */
.sect-button:disabled {
    background-color: #4b5563;
    cursor: not-allowed;
    opacity: 0.6;
}

.sect-item, #character-stats {
    transition: all 0.3s ease;
}

.sect-item:hover:not(:has(button:disabled)) {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1rem;
    }
    p, input, button, select {
        font-size: 0.75rem;
    }
    .container {
        padding: 1rem;
        max-width: 90%;
    }
    .sect-item {
        width: 100% !important;
    }
    .sect-item p, .sect-item button {
        font-size: 0.7rem;
    }
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
    .talent-minus, .talent-plus {
        width: 20px;
        height: 20px;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    p, input, button, select {
        font-size: 0.875rem;
    }
    .container {
        padding: 1.5rem;
    }
    .sect-item p, .sect-item button {
        font-size: 0.8rem;
    }
}

@media (min-width: 1025px) {
    h1 {
        font-size: 3.5rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    p, input, button, select {
        font-size: 1rem;
    }
    .sect-item p, .sect-item button {
        font-size: 0.9rem;
    }
}