/* Galactic Conquest Support - Modern Space Theme */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated starfield background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, #fff, transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, #fff, transparent),
        radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 10s linear infinite;
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

@keyframes sparkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

/* Container and Layout */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Header Section */
.header {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.header h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00ffd1, #00a8ff, #9c88ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 209, 0.3);
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(0, 255, 209, 0.3); }
    to { text-shadow: 0 0 30px rgba(0, 255, 209, 0.5), 0 0 40px rgba(0, 255, 209, 0.3); }
}

.subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
}

/* Main Content Card */
.content-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 255, 209, 0.1);
}

/* Contact Section */
.contact-section {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.email-highlight {
    display: inline-block;
    background: linear-gradient(45deg, #00ffd1, #00a8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background-color: rgba(0, 255, 209, 0.1);
    border: 1px solid rgba(0, 255, 209, 0.3);
    margin: 0.5rem;
    transition: all 0.3s ease;
}

.email-highlight:hover {
    background-color: rgba(0, 255, 209, 0.2);
    transform: scale(1.05);
}

/* Delete Account Section */
.delete-account-section {
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.delete-account-section h2 {
    font-size: 2rem;
    color: #00ffd1;
    margin-bottom: 1rem;
    text-align: center;
}

.section-intro {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    text-align: center;
}

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

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 255, 209, 0.05);
    border-radius: 12px;
    border-left: 3px solid #00ffd1;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(0, 255, 209, 0.1);
    transform: translateX(5px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(45deg, #00ffd1, #00a8ff);
    color: #0c0c0c;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1rem;
    box-shadow: 0 4px 10px rgba(0, 255, 209, 0.3);
}

.step-content {
    flex: 1;
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.8;
}

.step-content strong {
    color: #00ffd1;
}

.warning-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 100, 100, 0.1);
    border: 2px solid rgba(255, 100, 100, 0.3);
    border-radius: 12px;
    color: #ffcccc;
    font-size: 1rem;
    line-height: 1.6;
}

.warning-box strong {
    color: #ff6b6b;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Navigation Links */
.nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 3rem;
}

.nav-link {
    display: inline-block;
    color: #00ffd1;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border: 2px solid transparent;
    border-radius: 50px;
    background: linear-gradient(45deg, rgba(0, 255, 209, 0.1), rgba(0, 168, 255, 0.1));
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #ffffff;
    border-color: #00ffd1;
    background: linear-gradient(45deg, rgba(0, 255, 209, 0.2), rgba(0, 168, 255, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 209, 0.2);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .header h1 {
        font-size: 2.5rem;
    }
    
    .content-card {
        padding: 2rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
    }
    
    .delete-account-section h2 {
        font-size: 1.5rem;
    }
    
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .email-highlight {
        font-size: 1rem;
    }
    
    .delete-account-section h2 {
        font-size: 1.3rem;
    }
    
    .section-intro {
        font-size: 1rem;
    }
    
    .step-content {
        font-size: 1rem;
    }
    
    .warning-box {
        font-size: 0.9rem;
        padding: 1rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    body::before {
        animation: none;
    }
}

/* Focus states for keyboard navigation */
.nav-link:focus {
    outline: 2px solid #00ffd1;
    outline-offset: 2px;
}

/* Loading animation */
.loading-shimmer {
    animation: shimmer 2s infinite linear;
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}