/* CSS Variables for consistent theming */
:root {
    --primary-bg: #171212;
    --secondary-bg: #261C1C;
    --tertiary-bg: #382929;
    --accent-red: #A10F0F;
    --accent-red-hover: #8A0D0D;
    --text-primary: #ffffff;
    --text-secondary: #B89E9E;
    --border-color: #543D3D;
    --border-light: #E5E8EB;
    --hover-border: #8a6b6b;
}

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

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    min-height: 100vh;
    background: var(--primary-bg);
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.header {
    padding: 12px 40px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Animated Logo Styles */
.logo-section {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    height: 60px;
    width: 200px;
}

.animated-logo {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.logo-text-main {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -2px;
    position: relative;
    z-index: 10;
}

.logo-text-main .md {
    display: inline-block;
}

.logo-text-main .studios {
    font-size: 16px;
    font-weight: 400;
    margin-left: 8px;
    vertical-align: middle;
}

/* Distressed texture overlay for header logo */
.logo-text-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, transparent 1px, transparent 2px),
        radial-gradient(circle at 80% 20%, transparent 0.5px, transparent 1px),
        radial-gradient(circle at 40% 70%, transparent 0.5px, transparent 1px);
    background-size: 15px 15px, 12px 12px, 10px 10px;
    opacity: 0.2;
    mix-blend-mode: multiply;
}

/* Mini circular HUD element for header */
.mini-hud-circle {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--accent-red) 0deg,
        #ff6666 120deg,
        var(--accent-red) 240deg,
        #cc3333 360deg
    );
    animation: headerRotate 15s linear infinite;
}

.mini-hud-circle::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: var(--primary-bg);
    border-radius: 50%;
}

/* Header logo animations */
@keyframes headerRotate {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.logo-section:hover .mini-hud-circle {
    animation-duration: 3s;
}

/* Status dots for header logo */
.header-status-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: headerBlink 2s ease-in-out infinite;
}

.header-status-dot-1 {
    top: 10px;
    right: 25px;
    animation-delay: 0s;
}

.header-status-dot-2 {
    bottom: 10px;
    right: 30px;
    animation-delay: 1s;
}

@keyframes headerBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.nav-section {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link.active {
    opacity: 1;
    font-weight: 700;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--accent-red);
    color: var(--text-primary);
}

.btn-primary:hover {
    background: var(--accent-red-hover);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 0 16px;
    height: 40px;
    font-size: 14px;
}

.btn-lg {
    padding: 0 20px;
    height: 48px;
    font-size: 16px;
    border-radius: 24px;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 20px 160px;
    display: flex;
    justify-content: center;
}

.content-wrapper {
    max-width: 960px;
    width: 100%;
}

/* Section Titles */
.section-title {
    padding: 20px 16px 12px;
    color: var(--text-primary);
    font-size: 22px;
    font-weight: 700;
}

/* Form Styles */
.form-field {
    margin-bottom: 20px;
}

.field-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.input-field,
.textarea-field,
.select-field {
    width: 100%;
    padding: 16px;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-field {
    height: 56px;
}

.textarea-field {
    min-height: 144px;
    resize: vertical;
}

.input-field:focus,
.textarea-field:focus,
.select-field:focus {
    border-color: var(--hover-border);
}

.input-field::placeholder,
.textarea-field::placeholder {
    color: var(--text-secondary);
}

/* Option Styles */
.options-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.option-item {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-item:hover {
    border-color: var(--hover-border);
}

.option-item.selected {
    border-color: var(--text-primary);
}

.option-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.option-item.disabled:hover {
    border-color: var(--border-color);
}

.radio-btn {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.option-item.selected .radio-btn {
    border-color: var(--text-primary);
    background: var(--text-primary);
}

.option-content h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.option-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Checkbox Styles */
.checkbox {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.checkbox:hover {
    border-color: var(--hover-border);
}

.checkbox.checked {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.checkbox.checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-primary);
    font-weight: bold;
    font-size: 12px;
}

/* Footer */
.footer {
    margin-top: 40px;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    background: var(--secondary-bg);
    width: 100%;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-nav-item {
    color: var(--text-secondary);
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.footer-nav-item:hover {
    opacity: 0.8;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Page Header */
.page-header {
    padding: 16px;
    margin-bottom: 32px;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.page-description {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-content {
        padding: 20px 80px;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 20px 20px;
    }
    
    .header {
        padding: 12px 20px;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .logo-section {
        width: 160px;
        height: 50px;
    }
    
    .logo-text-main {
        font-size: 22px;
        letter-spacing: -1px;
    }
    
    .logo-text-main .studios {
        font-size: 14px;
        margin-left: 6px;
    }
    
    .mini-hud-circle {
        width: 30px;
        height: 30px;
        right: -8px;
    }
    
    .nav-section {
        gap: 16px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }
} 