/* Estilos base */
:root {
    --cosmic-purple: #4a1e6e;
    --void-black: #0a0a1a;
    --eldritch-green: #00ff9d;
    --abyssal-blue: #1a237e;
    --blood-red: #c62828;
    --frost-white: #e3f2fd;
    --shadow-gray: #2d2d3d;
    --neon-purple: #9c27b0;
    --golden: #ffd700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--void-black);
    color: var(--frost-white);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(74, 30, 110, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(26, 35, 126, 0.1) 0%, transparent 20%),
        linear-gradient(to bottom, var(--void-black), #0d0d1a);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Efectos cósmicos */
#cosmic-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.cosmic-pulse {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
    opacity: 0.1;
    filter: blur(40px);
    animation: pulse 8s infinite ease-in-out;
}

.cosmic-void {
    position: absolute;
    top: 50%;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--abyssal-blue) 0%, transparent 70%);
    opacity: 0.05;
    filter: blur(60px);
    animation: void-float 15s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.2; transform: translateX(-50%) scale(1.1); }
}

@keyframes void-float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.05; }
    33% { transform: translateY(-100px) rotate(120deg); opacity: 0.08; }
    66% { transform: translateY(100px) rotate(240deg); opacity: 0.03; }
}

/* Header y navegación */
.main-header {
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(156, 39, 176, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo i {
    font-size: 2.5rem;
    color: var(--eldritch-green);
    animation: glow 2s infinite alternate;
}

.logo h1 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--frost-white), var(--eldritch-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cosmic-text {
    color: var(--eldritch-green);
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
    position: relative;
}

.cosmic-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--eldritch-green), transparent);
}

.server-version {
    font-size: 0.8rem;
    color: var(--eldritch-green);
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 5px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-link {
    color: var(--frost-white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(156, 39, 176, 0.2), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(74, 30, 110, 0.3);
    color: var(--eldritch-green);
}

.nav-link.highlight {
    background: linear-gradient(45deg, var(--cosmic-purple), var(--abyssal-blue));
    border: 1px solid var(--eldritch-green);
}

.nav-link.highlight:hover {
    background: linear-gradient(45deg, var(--abyssal-blue), var(--cosmic-purple));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.4);
}

/* Dropdown menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--frost-white);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu a:hover {
    background: rgba(74, 30, 110, 0.5);
    color: var(--eldritch-green);
    padding-left: 25px;
}

/* Server status */
.server-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: rgba(45, 45, 61, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 157, 0.3);
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--eldritch-green);
    animation: pulse 2s infinite;
}

.status-indicator.online {
    background: var(--eldritch-green);
    box-shadow: 0 0 10px var(--eldritch-green);
}

.players-count {
    font-size: 0.9rem;
    color: var(--frost-white);
}

.players-count .count {
    color: var(--eldritch-green);
    font-weight: 700;
}

/* Hero section */
.hero-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--frost-white), var(--eldritch-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--eldritch-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(227, 242, 253, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cosmic {
    background: linear-gradient(45deg, var(--cosmic-purple), var(--abyssal-blue));
    color: var(--frost-white);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-cosmic::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;
}

.btn-cosmic:hover::before {
    left: 100%;
}

.btn-cosmic:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 30, 110, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--eldritch-green);
    border: 2px solid var(--eldritch-green);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(0, 255, 157, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.2);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-very-large {
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 700;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero image */
.hero-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--eldritch-green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.cosmic-frame {
    position: relative;
}

.cosmic-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--eldritch-green), var(--neon-purple), var(--abyssal-blue));
    z-index: -1;
    border-radius: 12px;
    animation: border-glow 3s infinite alternate;
}

@keyframes border-glow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(10, 10, 26, 0.7));
}

.cosmic-overlay {
    background: linear-gradient(45deg, transparent, rgba(74, 30, 110, 0.3), rgba(26, 35, 126, 0.3));
}

/* Sections */
.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: var(--eldritch-green);
}

.dark-section {
    background: rgba(10, 10, 26, 0.7);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(74, 30, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 35, 126, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Cards cósmicas */
.cosmic-card {
    background: rgba(45, 45, 61, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 10px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cosmic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--eldritch-green), var(--neon-purple));
}

.cosmic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(74, 30, 110, 0.3);
    border-color: rgba(0, 255, 157, 0.5);
}

/* Features section */
.features-section {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    color: var(--eldritch-green);
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--eldritch-green);
}

.feature-description {
    color: rgba(227, 242, 253, 0.8);
    font-size: 1rem;
}

/* Rates table */
.rates-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
}

.rates-table th {
    background: rgba(74, 30, 110, 0.5);
    padding: 15px;
    text-align: left;
    color: var(--eldritch-green);
    border-bottom: 2px solid var(--eldritch-green);
}

.rates-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rates-table tr:hover {
    background: rgba(74, 30, 110, 0.2);
}

.rate-value {
    color: var(--eldritch-green);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Rules section */
.rules-section {
    padding: 80px 0;
}

.rules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.rule-category h3 {
    color: var(--eldritch-green);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rule-list {
    list-style: none;
}

.rule-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.cosmic-check {
    color: var(--eldritch-green);
    min-width: 20px;
}

.cosmic-cross {
    color: var(--blood-red);
    min-width: 20px;
}

.rules-warning {
    grid-column: 1 / -1;
    background: rgba(198, 40, 40, 0.1);
    border-color: rgba(198, 40, 40, 0.5);
}

.rules-warning h4 {
    color: var(--blood-red);
    margin-bottom: 10px;
}

/* FAQ section */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 20px;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--frost-white);
}

.faq-question i {
    color: var(--eldritch-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px;
    color: rgba(227, 242, 253, 0.8);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA section */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(227, 242, 253, 0.9);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--eldritch-green);
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: rgba(227, 242, 253, 0.8);
    margin-top: 5px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

/* Register section */
.register-section {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.register-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.register-header {
    text-align: center;
    margin-bottom: 40px;
}

.register-subtitle {
    font-size: 1.2rem;
    color: rgba(227, 242, 253, 0.8);
    margin-top: 10px;
}

.register-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.auth-form {
    grid-column: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--eldritch-green);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(156, 39, 176, 0.5);
    border-radius: 5px;
    color: var(--frost-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--eldritch-green);
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
}

.form-hint {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    color: rgba(227, 242, 253, 0.6);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-weight: normal;
    color: rgba(227, 242, 253, 0.9);
}

.terms-link {
    color: var(--eldritch-green);
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

.form-footer {
    margin-top: 20px;
    text-align: center;
    color: rgba(227, 242, 253, 0.8);
}

.form-footer a {
    color: var(--eldritch-green);
    text-decoration: none;
    font-weight: 600;
}

.form-footer a:hover {
    text-decoration: underline;
}

.register-info {
    grid-column: 2;
}

.register-info h4 {
    color: var(--eldritch-green);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.register-info ul {
    list-style: none;
}

.register-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.register-info i {
    color: var(--eldritch-green);
    margin-top: 3px;
}

/* Success/Error messages */
.success-message, .error-message {
    margin-bottom: 30px;
    text-align: center;
}

.success-message {
    background: rgba(0, 255, 157, 0.1);
    border-color: var(--eldritch-green);
}

.error-message {
    background: rgba(198, 40, 40, 0.1);
    border-color: var(--blood-red);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.error-message i {
    color: var(--blood-red);
    font-size: 1.5rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--eldritch-green);
    margin-bottom: 20px;
}

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.game-credentials {
    margin-top: 30px;
    padding: 20px;
    background: rgba(10, 10, 26, 0.5);
    border-radius: 5px;
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.game-credentials h4 {
    color: var(--eldritch-green);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.credentials-info p {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.credentials-info strong {
    min-width: 120px;
    color: var(--eldritch-green);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 26, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: rgba(45, 45, 61, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(156, 39, 176, 0.5);
    border-radius: 10px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modal-appear 0.3s ease;
}

@keyframes modal-appear {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--frost-white);
    font-size: 1.5rem;
    text-decoration: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--eldritch-green);
}

.cosmic-modal h3 {
    color: var(--eldritch-green);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cosmic-modal.large {
    max-width: 800px;
}

.terms-content {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.terms-content h4 {
    color: var(--eldritch-green);
    margin: 20px 0 10px;
}

.terms-content p {
    margin-bottom: 15px;
    color: rgba(227, 242, 253, 0.8);
}

.terms-warning {
    margin-top: 30px;
    padding: 15px;
    background: rgba(198, 40, 40, 0.1);
    border-radius: 5px;
    border-left: 4px solid var(--blood-red);
}

.terms-warning p {
    margin: 0;
}

/* Download section */
.download-section {
    padding: 80px 0;
}

.download-header {
    text-align: center;
    margin-bottom: 40px;
}

.download-subtitle {
    font-size: 1.2rem;
    color: rgba(227, 242, 253, 0.8);
    margin-top: 10px;
}

.download-warning {
    margin-bottom: 40px;
    background: rgba(198, 40, 40, 0.1);
    border-color: rgba(198, 40, 40, 0.5);
}

.download-warning h4 {
    color: var(--blood-red);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.download-option {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(156, 39, 176, 0.3);
}

.option-header h3 {
    color: var(--eldritch-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.option-badge {
    background: linear-gradient(45deg, var(--cosmic-purple), var(--abyssal-blue));
    color: var(--frost-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.option-badge.popular {
    background: linear-gradient(45deg, var(--blood-red), #ff6b6b);
}

.option-content {
    flex-grow: 1;
}

.option-description {
    margin-bottom: 20px;
    color: rgba(227, 242, 253, 0.8);
}

.option-details {
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(227, 242, 253, 0.8);
}

.detail-item i {
    color: var(--eldritch-green);
    width: 20px;
}

.download-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.option-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(227, 242, 253, 0.8);
}

.option-footer p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.install-steps {
    margin-top: 20px;
}

.install-steps h4 {
    color: var(--eldritch-green);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.install-steps ol {
    padding-left: 20px;
    color: rgba(227, 242, 253, 0.8);
}

.install-steps li {
    margin-bottom: 10px;
}

.tools-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tool-item {
    padding: 15px;
    background: rgba(10, 10, 26, 0.5);
    border-radius: 5px;
    border: 1px solid rgba(156, 39, 176, 0.2);
}

.tool-item h4 {
    color: var(--eldritch-green);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tool-item p {
    color: rgba(227, 242, 253, 0.8);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.tool-download {
    color: var(--eldritch-green);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.tool-download:hover {
    text-decoration: underline;
}

/* Installation guide */
.installation-guide {
    margin: 60px 0;
}

.guide-title {
    color: var(--eldritch-green);
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.guide-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.guide-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 24px;
    width: 2px;
    height: calc(100% + 30px);
    background: rgba(156, 39, 176, 0.3);
    z-index: -1;
}

.step-number {
    background: linear-gradient(45deg, var(--cosmic-purple), var(--abyssal-blue));
    color: var(--frost-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
    padding-top: 10px;
}

.step-content h4 {
    color: var(--eldritch-green);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-content p {
    color: rgba(227, 242, 253, 0.8);
    margin-bottom: 10px;
}

.step-content code {
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 3px;
    font-family: monospace;
    color: var(--eldritch-green);
    border: 1px solid rgba(156, 39, 176, 0.3);
}

/* Troubleshooting */
.troubleshooting {
    margin-top: 60px;
}

.troubleshooting h3 {
    color: var(--eldritch-green);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.trouble-item {
    padding: 20px;
    background: rgba(10, 10, 26, 0.5);
    border-radius: 5px;
    border: 1px solid rgba(156, 39, 176, 0.2);
}

.trouble-item h4 {
    color: var(--blood-red);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trouble-item p {
    color: rgba(227, 242, 253, 0.8);
    font-size: 0.9rem;
}

.support-info {
    padding: 20px;
    background: rgba(74, 30, 110, 0.2);
    border-radius: 5px;
    border-left: 4px solid var(--eldritch-green);
}

.support-info p {
    color: rgba(227, 242, 253, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-info a {
    color: var(--eldritch-green);
    text-decoration: none;
    font-weight: 600;
}

.support-info a:hover {
    text-decoration: underline;
}

/* Dashboard section */
.dashboard-section {
    padding: 40px 0 80px;
}

.dashboard-header {
    margin-bottom: 40px;
}

.dashboard-subtitle {
    font-size: 1.2rem;
    color: rgba(227, 242, 253, 0.8);
    text-align: center;
    margin-top: 10px;
}

.dashboard-welcome {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.welcome-content h3 {
    font-size: 1.8rem;
    color: var(--frost-white);
    margin-bottom: 10px;
}

.welcome-content p {
    color: rgba(227, 242, 253, 0.8);
}

.welcome-stats {
    display: flex;
    gap: 30px;
}

.welcome-stats .stat-item {
    text-align: center;
}

.welcome-stats .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--eldritch-green);
}

.welcome-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(227, 242, 253, 0.8);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.dashboard-card {
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(156, 39, 176, 0.3);
}

.card-header h3 {
    color: var(--eldritch-green);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.card-action {
    color: var(--eldritch-green);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.card-action:hover {
    color: var(--frost-white);
}

.card-content {
    flex-grow: 1;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: rgba(227, 242, 253, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-value {
    color: var(--frost-white);
    font-weight: 600;
}

.card-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 10px;
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Characters */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: rgba(227, 242, 253, 0.6);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: rgba(227, 242, 253, 0.3);
}

.characters-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.character-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(10, 10, 26, 0.5);
    border-radius: 5px;
    border: 1px solid rgba(156, 39, 176, 0.2);
    transition: all 0.3s ease;
}

.character-item:hover {
    border-color: rgba(0, 255, 157, 0.5);
    transform: translateX(5px);
}

.char-avatar {
    font-size: 2rem;
    color: var(--eldritch-green);
}

.char-info {
    flex-grow: 1;
}

.char-name {
    color: var(--frost-white);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.char-details {
    display: flex;
    gap: 15px;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: rgba(227, 242, 253, 0.8);
}

.char-location {
    font-size: 0.8rem;
    color: rgba(227, 242, 253, 0.6);
    display: flex;
    align-items: center;
    gap: 5px;
}

.char-actions {
    display: flex;
    gap: 5px;
}

.char-action {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    color: var(--frost-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.char-action:hover {
    background: rgba(0, 255, 157, 0.2);
    color: var(--eldritch-green);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(10, 10, 26, 0.5);
    border-radius: 5px;
    border: 1px solid rgba(156, 39, 176, 0.2);
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--eldritch-green);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 50%;
}

.stat-content .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--eldritch-green);
}

.stat-content .stat-label {
    font-size: 0.8rem;
    color: rgba(227, 242, 253, 0.7);
}

.progress-section {
    margin-top: 20px;
}

.progress-section h4 {
    color: var(--eldritch-green);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.progress-item span:first-child {
    min-width: 150px;
    color: rgba(227, 242, 253, 0.9);
}

.progress-bar {
    flex-grow: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--eldritch-green), var(--neon-purple));
    border-radius: 5px;
    transition: width 1s ease;
}

.progress-item span:last-child {
    min-width: 40px;
    text-align: right;
    color: var(--eldritch-green);
    font-weight: 600;
}

/* Quick actions */
.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(10, 10, 26, 0.5);
    border-radius: 5px;
    border: 1px solid rgba(156, 39, 176, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-action:hover {
    border-color: rgba(0, 255, 157, 0.5);
    transform: translateX(5px);
}

.action-icon {
    font-size: 1.5rem;
    color: var(--eldritch-green);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 10px;
}

.action-content h4 {
    color: var(--frost-white);
    margin-bottom: 5px;
    font-size: 1rem;
}

.action-content p {
    color: rgba(227, 242, 253, 0.7);
    font-size: 0.9rem;
}

.status-secure {
    color: var(--eldritch-green);
    font-weight: 600;
}

/* Activity timeline */
.activity-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.activity-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    position: relative;
}

.activity-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    width: 2px;
    height: calc(100% - 20px);
    background: rgba(156, 39, 176, 0.2);
}

.activity-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    z-index: 1;
}

.activity-icon.success {
    background: rgba(0, 255, 157, 0.1);
    color: var(--eldritch-green);
    border: 2px solid rgba(0, 255, 157, 0.3);
}

.activity-icon.warning {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.activity-icon {
    background: rgba(156, 39, 176, 0.1);
    color: var(--neon-purple);
    border: 2px solid rgba(156, 39, 176, 0.3);
}

.activity-content {
    flex-grow: 1;
    padding-top: 5px;
}

.activity-content h4 {
    color: var(--frost-white);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.activity-content p {
    color: rgba(227, 242, 253, 0.7);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.activity-time {
    font-size: 0.8rem;
    color: rgba(227, 242, 253, 0.5);
}

/* Footer */
footer {
    background: rgba(10, 10, 26, 0.95);
    border-top: 1px solid rgba(156, 39, 176, 0.3);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--eldritch-green);
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(227, 242, 253, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--eldritch-green);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--frost-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--eldritch-green);
    color: var(--void-black);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(227, 242, 253, 0.6);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--eldritch-green);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--frost-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

@media (max-width: 992px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .register-form-container {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 26, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid rgba(156, 39, 176, 0.3);
        border-bottom: 1px solid rgba(156, 39, 176, 0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .dashboard-welcome {
        flex-direction: column;
        text-align: center;
    }
    
    .welcome-stats {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large, .btn-very-large {
        width: 100%;
        justify-content: center;
    }
    
    .download-options {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}