/* ============================================
   LOGIN PAGE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

a:hover,
a:focus,
a:active {
    text-decoration: none !important;
}

button {
    text-decoration: none !important;
    outline: none !important;
}

button:hover,
button:focus,
button:active {
    text-decoration: none !important;
    outline: none !important;
}

.terms-link {
    color: #667eea;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none !important;
}

.terms-link:hover {
    color: #764ba2;
    text-decoration: none !important;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 500px;
}

.card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    animation: slideUp 0.6s ease-out;
}

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

.card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.card-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

.card-header p {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 8px;
    margin-bottom: 0;
}

.card-body {
    padding: 40px 30px;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #555;
}

.feature-item i {
    color: #667eea;
    margin-top: 2px;
    flex-shrink: 0;
}

.btn-twitch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #00c160 0%, #00a84d 100%);
    border: none !important;
    outline: none !important;
    text-decoration: none !important;
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 193, 96, 0.3);
    cursor: pointer;
}

.btn-twitch:hover {
    background: linear-gradient(135deg, #00a84d 0%, #008a3d 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 193, 96, 0.4);
    color: white;
    text-decoration: none;
}

.btn-twitch i {
    font-size: 18px;
}

.btn-twitch:focus,
.btn-twitch:active {
    outline: none !important;
    border: none !important;
    text-decoration: none !important;
    box-shadow: 0 12px 28px rgba(0, 193, 96, 0.4) !important;
}

.terms-text {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

.terms-text a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-text a:hover {
    color: #764ba2;
}

.footer {
    background: rgba(0, 0, 0, 0.1);
    padding: 25px 0;
    text-align: center;
    margin-top: auto;
    backdrop-filter: blur(10px);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none !important;
}

.footer-link:hover {
    color: white;
    text-decoration: none !important;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

/* Modal Styles */
.modal-content {
    background: rgba(255, 255, 255, 0.98);
    border: none;
    border-radius: 15px;
}

.modal-header {
    border-bottom: 2px solid #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.modal-title {
    color: #667eea;
    font-weight: 700;
}

.modal-body h6 {
    color: #667eea;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 10px;
}

.modal-body p {
    color: #333;
    line-height: 1.6;
}

.modal-body ul {
    color: #555;
}

.btn-close {
    filter: invert(0.8);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 576px) {
    .card-header {
        padding: 30px 20px;
    }

    .card-body {
        padding: 30px 20px;
    }

    .card-header h1 {
        font-size: 24px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }
}
