* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated Gradient Background - Black & White */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #000000 0%,
        #0a0a0a 25%,
        #1a1a1a 50%,
        #0f0f0f 75%,
        #000000 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-1px); }
}

/* Animated Grid Background Pattern - Red */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 68, 68, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 68, 68, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Floating Particles Effect - Red */
.container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255, 68, 68, 0.15), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 68, 68, 0.12), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 68, 68, 0.1), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 68, 68, 0.13), transparent),
        radial-gradient(2px 2px at 90% 80%, rgba(255, 68, 68, 0.15), transparent),
        radial-gradient(1px 1px at 33% 90%, rgba(255, 68, 68, 0.12), transparent);
    background-size: 200% 200%;
    animation: particlesFloat 25s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes particlesFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    25% { transform: translate(50px, -50px) scale(1.1); opacity: 0.7; }
    50% { transform: translate(-30px, 30px) scale(0.9); opacity: 0.6; }
    75% { transform: translate(30px, 50px) scale(1.05); opacity: 0.8; }
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Back Button with Glow - Red */
.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 68, 68, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-button:hover {
    background: rgba(42, 42, 42, 0.9);
    border-color: rgba(255, 68, 68, 0.3);
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.1);
    transform: translateY(-2px);
}

/* Login Form with Glassmorphism */
.login-form {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 68, 68, 0.1);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 60px rgba(255, 68, 68, 0.05);
    animation: formFloat 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.login-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 68, 68, 0.05),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes formFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Logo Image Styles */
.logo {
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

.logo-image {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 68, 68, 0.3));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(255, 68, 68, 0.3)); }
    50% { filter: drop-shadow(0 0 25px rgba(255, 68, 68, 0.5)); }
}

.landing-logo-image {
    max-width: 180px;
    filter: drop-shadow(0 0 20px rgba(255, 68, 68, 0.4));
}

/* Brand Name with Glow Effect - Red */
.brand-name {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff4444 0%, #cc3333 50%, #ff4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: 0 0 30px rgba(255, 68, 68, 0.3);
    animation: brandGlow 3s ease-in-out infinite;
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
}

@keyframes brandGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 68, 68, 0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 68, 68, 0.5)); }
}

.subtitle {
    font-size: 24px;
    color: #ffffff;
    opacity: 0.8;
    margin: -8px 0 0 0;
    letter-spacing: 0.5px;
}

.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 12px;
    color: #ffffff;
    opacity: 0.8;
    pointer-events: none;
    filter: drop-shadow(0 0 5px rgba(255, 68, 68, 0.3));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.input-wrapper input {
    width: 100%;
    padding: 12px 12px 12px 36px;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.input-wrapper input:focus {
    border-color: #ff4444;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 0 3px rgba(255, 68, 68, 0.1),
        0 0 20px rgba(255, 68, 68, 0.2);
    transform: translateY(-2px);
}

.input-wrapper input::placeholder {
    color: #666666;
}

/* Authenticate Button with Gradient and Glow - Red */
.authenticate-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #ff4444 0%, #cc3333 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 15px rgba(255, 68, 68, 0.2),
        0 0 30px rgba(255, 68, 68, 0.1);
    position: relative;
    overflow: hidden;
}

.authenticate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s;
}

.authenticate-btn:hover::before {
    left: 100%;
}

.authenticate-btn:hover {
    background: linear-gradient(135deg, #cc3333 0%, #aa2222 100%);
    box-shadow:
        0 6px 25px rgba(255, 68, 68, 0.3),
        0 0 40px rgba(255, 68, 68, 0.2);
    transform: translateY(-2px);
}

.authenticate-btn:active {
    transform: translateY(0) scale(0.98);
}

.discord-link {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.7;
    margin: 0;
}

.discord-link a {
    color: #5b9bd5;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.discord-link a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5b9bd5, #7ab3e0);
    transition: width 0.3s ease;
}

.discord-link a:hover {
    color: #7ab3e0;
}

.discord-link a:hover::after {
    width: 100%;
}

/* Error Message with Glow - Red */
.error-message {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid #ef4444;
    border-radius: 10px;
    padding: 12px 16px;
    color: #ef4444;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    animation: errorShake 0.5s ease, fadeIn 0.3s ease-in;
    box-shadow: 
        0 4px 15px rgba(239, 68, 68, 0.3),
        0 0 20px rgba(239, 68, 68, 0.2);
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Notification Container */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    pointer-events: none;
}

/* Error Notification */
.error-notification {
    background: rgba(239, 68, 68, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid #ef4444;
    border-radius: 12px;
    padding: 16px 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    animation: slideInRight 0.4s ease-out, fadeOut 0.4s ease-out 4.6s forwards;
    box-shadow:
        0 8px 25px rgba(239, 68, 68, 0.4),
        0 0 30px rgba(239, 68, 68, 0.2);
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 300px;
}

.error-notification:hover {
    transform: translateX(-5px);
    box-shadow:
        0 8px 30px rgba(239, 68, 68, 0.5),
        0 0 40px rgba(239, 68, 68, 0.3);
}

/* Success Notification */
.success-notification {
    background: rgba(16, 185, 129, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 16px 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    animation: slideInRight 0.4s ease-out, fadeOut 0.4s ease-out 2.6s forwards;
    box-shadow:
        0 8px 25px rgba(16, 185, 129, 0.4),
        0 0 30px rgba(16, 185, 129, 0.2);
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 300px;
}

.success-notification:hover {
    transform: translateX(-5px);
    box-shadow:
        0 8px 30px rgba(16, 185, 129, 0.5),
        0 0 40px rgba(16, 185, 129, 0.3);
}

/* Old Success Message (keeping for compatibility) */
.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(16, 185, 129, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid #10b981;
    border-radius: 10px;
    padding: 12px 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    z-index: 1000;
    animation: slideInRight 0.3s ease-out;
    box-shadow:
        0 4px 15px rgba(16, 185, 129, 0.3),
        0 0 20px rgba(16, 185, 129, 0.2);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Dashboard Styles */
.dashboard-container {
    justify-content: flex-start;
    padding: 40px 20px;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-card {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 68, 68, 0.1);
    border-radius: 20px;
    padding: 24px;
    width: 100%;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transition: all 0.3s ease;
    animation: cardFadeIn 0.6s ease-out;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dashboard-card:hover {
    border-color: rgba(255, 68, 68, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 68, 68, 0.05) inset,
        0 0 40px rgba(255, 68, 68, 0.1);
    transform: translateY(-2px);
}

/* Profile Section */
.profile-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-wrapper {
    position: relative;
    animation: avatarFloat 3s ease-in-out infinite;
}

@keyframes avatarFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 68, 68, 0.3);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.2);
}

.online-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background-color: #10b981;
    border: 2px solid #1a1a1a;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.username {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.2);
}

.user-id {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.6;
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.logout-btn:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.5);
    transform: translateY(-2px);
}

/* Product Section */
.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.section-icon {
    color: #ffffff;
    opacity: 0.8;
    filter: drop-shadow(0 0 5px rgba(255, 68, 68, 0.3));
}

.discord-icon {
    color: #5865F2;
    filter: drop-shadow(0 0 5px rgba(88, 101, 242, 0.5));
}

.section-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.2);
}

.licensed-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(26, 26, 26, 0.9));
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.1);
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 68, 68, 0.1);
    transition: all 0.3s ease;
}

.info-row:hover {
    border-bottom-color: rgba(255, 68, 68, 0.2);
    padding-left: 8px;
}

.info-row:last-of-type {
    border-bottom: none;
    margin-bottom: 24px;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

.info-icon {
    color: #ffffff;
    opacity: 0.8;
    filter: drop-shadow(0 0 3px rgba(255, 68, 68, 0.3));
}

.info-value {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
}

.copy-btn {
    background: none;
    border: none;
    color: #ffffff;
    opacity: 0.6;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.copy-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.download-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #ff4444 0%, #cc3333 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 15px rgba(255, 68, 68, 0.2),
        0 0 30px rgba(255, 68, 68, 0.1);
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    background: linear-gradient(135deg, #cc3333 0%, #aa2222 100%);
    box-shadow:
        0 6px 25px rgba(255, 68, 68, 0.3),
        0 0 40px rgba(255, 68, 68, 0.2);
    transform: translateY(-2px);
}

.download-btn:active {
    transform: translateY(0) scale(0.98);
}

.reset-btn {
    width: 100%;
    padding: 12px 24px;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.reset-btn:hover {
    background: rgba(26, 26, 26, 0.9);
    border-color: rgba(255, 68, 68, 0.4);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 68, 68, 0.1);
    transform: translateY(-2px);
}

/* Discord Section */
.discord-section {
    text-align: center;
}

.discord-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.checkmark {
    margin-bottom: 8px;
    animation: checkmarkPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
}

@keyframes checkmarkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.status-text {
    font-size: 18px;
    font-weight: 600;
    color: #10b981;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.status-subtext {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.7;
}

.discord-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    position: relative;
    overflow: hidden;
}

.discord-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.discord-btn:hover::before {
    left: 100%;
}

.discord-btn:hover {
    background: linear-gradient(135deg, #4752C4, #3c45a5);
    box-shadow: 0 6px 25px rgba(88, 101, 242, 0.6);
    transform: translateY(-2px);
}

.discord-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Landing Page Styles */
.landing-container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.landing-logo {
    margin-bottom: 60px;
    text-align: center;
    animation: logoPulse 2s ease-in-out infinite;
}

.welcome-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 24px;
    text-shadow: 0 0 30px rgba(255, 68, 68, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.welcome-tagline {
    font-size: 18px;
    color: #ffffff;
    opacity: 0.8;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-btn {
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.primary-btn {
    background: linear-gradient(135deg, #ff4444 0%, #cc3333 100%);
    color: #ffffff;
    box-shadow:
        0 4px 15px rgba(255, 68, 68, 0.2),
        0 0 30px rgba(255, 68, 68, 0.1);
}

.primary-btn:hover {
    background: linear-gradient(135deg, #cc3333 0%, #aa2222 100%);
    box-shadow:
        0 6px 25px rgba(255, 68, 68, 0.3),
        0 0 40px rgba(255, 68, 68, 0.2);
    transform: translateY(-2px);
}

.secondary-btn {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 68, 68, 0.2);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.secondary-btn:hover {
    background: rgba(42, 42, 42, 0.9);
    border-color: rgba(255, 68, 68, 0.4);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 68, 68, 0.1);
    transform: translateY(-2px);
}

.cta-btn:active {
    transform: translateY(0) scale(0.98);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Cheat Preview Container */
.cheat-preview-container {
    width: 100%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(15px);
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.cheat-preview-header {
    text-align: center;
    margin-bottom: 40px;
}

.cheat-preview-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cheat-preview-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.cheat-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.preview-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.preview-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.preview-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.preview-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.preview-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

.preview-video-container {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    height: 250px;
}

.preview-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

.feature-card {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 68, 68, 0.1);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.feature-card:hover {
    border-color: rgba(255, 68, 68, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 68, 68, 0.05) inset,
        0 0 40px rgba(255, 68, 68, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 0 10px rgba(255, 68, 68, 0.3));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.2);
}

.feature-description {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.7;
    line-height: 1.6;
}


/* Responsive Design */
@media (max-width: 768px) {
    .login-form {
        padding: 32px 24px;
    }

    .dashboard-container {
        padding: 20px 16px;
    }

    .profile-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .logout-btn {
        width: 100%;
        justify-content: center;
    }

    .welcome-title {
        font-size: 36px;
    }

    .welcome-tagline {
        font-size: 16px;
        padding: 0 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn {
        width: 100%;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .cheat-preview-container {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .cheat-preview-header h2 {
        font-size: 28px;
    }

    .cheat-preview-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .preview-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .preview-video-container {
        height: 200px;
    }
}

/* Checkbox Styles */
.checkbox-group {
    margin-top: 20px;
    margin-bottom: 12px;
    padding: 0 4px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    user-select: none;
    gap: 12px;
    transition: color 0.2s ease;
}

.checkbox-label:hover {
    color: rgba(255, 255, 255, 1);
}

.checkbox-label input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark {
    background-color: #10b981;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark::after {
    display: block;
}

.checkbox-label:hover .checkmark {
    border-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.12);
}

/* Status Section Styles */
.status-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.status-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-section h3::before {
    content: '';
    width: 4px;
    height: 16px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 2px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.status-value {
    font-size: 13px;
    color: #ffffff;
    font-weight: 600;
}

.status-active {
    color: #10b981;
}

.status-active::before {
    content: '● ';
    color: #10b981;
}

/* Mobile responsive for status section */
@media (max-width: 768px) {
    .status-grid {
        grid-template-columns: 1fr;
    }

    .status-item {
        padding: 10px 12px;
    }
}