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

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #e0e0e0;
    line-height: 1.6;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* Top Navigation */
.top-nav {
    background: rgba(15, 15, 15, 0.4);
    border-bottom: 2px solid rgba(0, 212, 181, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
}

.nav-left .logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4b5 0%, #00f4d5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-center {
    display: flex;
    gap: 30px;
}

.nav-item {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4b5, #00f4d5);
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: #00d4b5;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    gap: 15px;
}

.nav-button {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
}

.login-btn {
    color: #00d4b5;
    border-color: #00d4b5;
    background: transparent;
}

.login-btn:hover {
    background: rgba(0, 212, 181, 0.1);
    color: #00f4d5;
    border-color: #00f4d5;
}

.register-btn {
    background: linear-gradient(135deg, #00d4b5 0%, #00f4d5 100%);
    color: #000;
    border-color: transparent;
    font-weight: 700;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 212, 181, 0.3);
}

@media (max-width: 768px) {
    .nav-center {
        display: none;
    }
    
    .nav-right {
        flex-direction: column;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background: 
        linear-gradient(135deg, rgba(0, 212, 181, 0.05) 0%, rgba(0, 244, 213, 0.05) 100%),
        url('../../img/bgtop.jpg');
    background-size: 70%;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 181, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 244, 213, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 0%, rgba(0, 212, 181, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px;
}

.hero-title-wrapper {
    margin-bottom: 50px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4b5 0%, #00f4d5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(0, 212, 181, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: #b0b0b0;
    font-weight: 300;
    margin-top: 20px;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 40px;
    border-radius: 35px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid;
    letter-spacing: 1px;
}

.download-btn {
    background: linear-gradient(135deg, #00d4b5 0%, #00f4d5 100%);
    color: #000;
    border-color: transparent;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 212, 181, 0.4);
}

.discord-btn {
    background: transparent;
    color: #00d4b5;
    border-color: #00d4b5;
}

.discord-btn:hover {
    background: rgba(0, 212, 181, 0.1);
    color: #00f4d5;
    border-color: #00f4d5;
}

/* Info Bar */
.info-bar {
    background: rgba(31, 31, 31, 0.8);
    border-top: 1px solid rgba(0, 212, 181, 0.1);
    border-bottom: 1px solid rgba(0, 212, 181, 0.1);
    padding: 30px 0;
}

.info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    text-align: center;
}

.info-item i {
    font-size: 28px;
    color: #00d4b5;
    min-width: 40px;
}

.info-item span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Main Container */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Quick Access Section */
.quick-access {
    margin: 80px 0 60px;
    text-align: center;
}

.quick-access h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #00d4b5 0%, #00f4d5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.quick-link-card {
    padding: 30px;
    background: rgba(31, 31, 31, 0.8);
    border: 2px solid rgba(0, 212, 181, 0.2);
    border-radius: 15px;
    text-decoration: none;
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.quick-link-card i {
    font-size: 36px;
    color: #00d4b5;
}

.quick-link-card:hover {
    background: rgba(0, 212, 181, 0.1);
    border-color: #00d4b5;
    transform: translateY(-5px);
}

/* Content Sections */
.content-section {
    margin: 80px 0;
    padding: 60px 0;
    border-top: 2px solid rgba(0, 212, 181, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #00d4b5 0%, #00f4d5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 16px;
    color: #888;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Trailer Section */
.trailer-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 212, 181, 0.1);
    margin-bottom: 40px;
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.event-card {
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.9) 0%, rgba(42, 42, 42, 0.9) 100%);
    border: 2px solid rgba(0, 212, 181, 0.2);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4b5 0%, #00f4d5 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.event-card:hover::before {
    transform: scaleX(1);
}

.event-card:hover {
    border-color: #00d4b5;
    background: linear-gradient(135deg, rgba(0, 212, 181, 0.1) 0%, rgba(0, 244, 213, 0.05) 100%);
}

.event-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 212, 181, 0.2);
    color: #00d4b5;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.event-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0;
    color: #fff;
}

.event-card p {
    color: #aaa;
    margin: 15px 0;
    font-size: 14px;
}

.event-time {
    color: #00d4b5;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.9) 0%, rgba(42, 42, 42, 0.9) 100%);
    border: 2px solid rgba(0, 212, 181, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    border-color: #00d4b5;
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 212, 181, 0.15);
}

.news-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 212, 181, 0.2) 0%, rgba(0, 244, 213, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(0, 212, 181, 0.3);
}

.news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    color: #00d4b5;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
    color: #fff;
}

.news-card p {
    color: #aaa;
    font-size: 14px;
    margin: 10px 0;
    flex-grow: 1;
}

.read-more {
    color: #00d4b5;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #00f4d5;
    transform: translateX(5px);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(31, 31, 31, 0.8);
    border: 2px solid rgba(0, 212, 181, 0.2);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #00d4b5;
    background: rgba(0, 212, 181, 0.05);
}

.faq-toggle {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: #e0e0e0;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-toggle:hover {
    color: #00d4b5;
}

.faq-toggle i {
    color: #00d4b5;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 212, 181, 0.05);
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding: 20px;
}

.faq-content p {
    color: #aaa;
    margin: 0;
    line-height: 1.7;
}

.text-link {
    color: #00d4b5;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: #00f4d5;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-top: 2px solid rgba(0, 212, 181, 0.2);
    margin-top: 80px;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #00d4b5;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #00d4b5;
    margin-left: 5px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 181, 0.1);
    border: 2px solid rgba(0, 212, 181, 0.3);
    border-radius: 50%;
    color: #00d4b5;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(0, 212, 181, 0.2);
    border-color: #00d4b5;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid rgba(0, 212, 181, 0.1);
    padding-top: 20px;
}

.footer-bottom p {
    color: #666;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .quick-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-container {
        padding: 0 15px;
    }
}
    background-color: #1f1f1f;
    color: #f0f0f0;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 2em;
    margin: 0;
}

header nav {
    margin-top: 10px;
}

header nav a {
    color: #f0f0f0;
    text-decoration: none;
    padding: 10px;
    margin: 5px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

header nav a:hover {
    background-color: #4CAF50;
}

/* Card Container */
.card {
    background-color: #1f1f1f;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.card h3,
.card h4 {
    color: #e0e0e0;
}

/* Form Elements */
.form-label {
    color: #e0e0e0; /* Lighter text for labels */
    font-weight: bold;
}

.form-input {
    background-color: #333; /* Dark background for inputs */
    color: #f0f0f0; /* Light text inside input */
    border: 1px solid #444;
    padding: 10px;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 4px;
}

.form-input:focus {
    border-color: #4CAF50; /* Highlight on focus */
}

.form-checkbox-input {
    accent-color: #4CAF50; /* Customize checkbox color for dark theme */
}

/* Buttons */
.btn-submit {
    background-color: #4CAF50; /* Green button for dark theme */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #45a049; /* Hover effect */
}

/* Links */
.dark-link {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: bold;
}

.dark-link:hover {
    color: #4CAF50; /* Highlight color for links */
}

/* Error Message */
.error-message {
    color: #f44336; /* Red color for error messages */
    font-weight: bold;
}

/* Page Titles */
.page-title {
    font-size: 2em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

/* Navigation Bar */
nav {
    background-color: #1f1f1f;
    padding: 15px;
    text-align: center;
}

nav a {
    color: #f0f0f0;
    text-decoration: none;
    padding: 10px;
    margin: 0 5px;
    border-radius: 4px;
}

nav a:hover {
    background-color: #4CAF50;
}

/* Footer */
footer {
    background-color: #1f1f1f;
    color: #e0e0e0;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card {
        padding: 15px;
    }

    .form-input, .btn-submit {
        width: 100%;
    }
}

/* Modal (Optional for alerts or dialogs) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #1f1f1f;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #444;
    width: 80%;
    max-width: 400px;
}

.modal-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
}

.modal-close:hover,
.modal-close:focus {
    color: #f44336;
    text-decoration: none;
    cursor: pointer;
}

/* Cards */
.card-header {
    font-size: 1.5em;
    color: #e0e0e0;
}

.card-body {
    margin-top: 10px;
}

.card-footer {
    font-size: 0.9em;
    color: #9e9e9e;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px; /* Add some space above the table */
}

table th,
table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #444;
    /* color: #e0e0e0; */
    /* Remove forced color so class-based styles apply */
    /* Or set it only if no color class is present */
    /* Optional fallback */
    color: inherit;
}

table th {
    background-color: #333;
    font-weight: bold;
    text-transform: uppercase; /* Make the table headers uppercase for better readability */
}

table tr:hover {
    background-color: #333; /* Darken the row when hovered */
    cursor: pointer; /* Make the pointer a hand to show it's clickable */
}

table td {
    font-size: 1.1em; /* Increase font size for better readability */
}

/* Custom Row Styling for Specific Columns */
table td:nth-child(2) {
    font-weight: bold;
    color: #f1c40f; /* Highlight Name column with a gold color */
}

table td:nth-child(6) {
    font-weight: bold;
    color: #e74c3c; /* Color for Class */
}

/* Card Styling */
.card {
    background-color: #1f1f1f;
    border-radius: 10px;
    border: 1px solid #333;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Add shadow for better depth */
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px); /* Add hover effect for the card */
}

/* Page Title Styling */
.page-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

/* Header Styling */
header {
    background-color: #1f1f1f;
    color: #f0f0f0;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Slight shadow for the header */
}

/* Table Row Hover Effects */
table tr:hover {
    background-color: #444;
    transform: scale(1.02); /* Slightly scale up the row on hover */
}

/* Styling Table Columns */
table th:nth-child(1) {
    width: 5%;
}

table th:nth-child(2) {
    width: 30%;
}

table th:nth-child(3),
table th:nth-child(4) {
    width: 15%;
}

table th:nth-child(5) {
    width: 20%;
}

table th:nth-child(6) {
    width: 15%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #2c2c2c;
}

::-webkit-scrollbar-thumb {
    background-color: #444;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #4CAF50;
}

/* Nation and Status Colors */
.lightpurple {
    color: #b19cd9; /* Light Purple */
}

.lightblue {
    color: #add8e6; /* Light Blue */
}

.lightgreen {
    color: #90ee90; /* Light Green */
}

.red {
    color: #f44336; /* Red */
}

.darkgreen {
    color: #388e3c; /* Dark Green */
}

.news-list {
    margin-top: 20px;
}

.news-item {
    background-color: #1c1c1c;
    border: 1px solid #333;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.news-item h3 {
    margin: 0;
    color: #00ffff;
}

.news-item small {
    color: #aaa;
    display: block;
    margin-bottom: 10px;
}

.news-item p {
    color: #ddd;
}

.container {
    max-width: 1920px;
    margin: 40px auto;
    padding: 0 20px;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
}
.container {
    max-width: 1920px;
    margin: 40px auto;
    padding: 0 20px;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
}
.page-title, .news-title {
    text-align: center;
    color: #00bcd4;
    margin-bottom: 20px;
}

.subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 40px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-card {
    background: #1c1c1c;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.1);
    transition: transform 0.2s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.news-header h3 {
    margin: 0;
    font-size: 20px;
    color: #ffffff;
}

.news-date {
    font-size: 14px;
    color: #999;
}

.news-content {
    font-size: 16px;
    line-height: 1.5;
}

.no-news {
    text-align: center;
    color: #999;
}

.page-title {
    text-align: center;
    margin-bottom: 25px;
    color: #00bcd4;
}

.card {
    background: #1c1c1c;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.1);
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #ccc;
}

.form-input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #444;
    background: #2a2a2a;
    color: #eee;
    margin-bottom: 15px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    color: #aaa;
}

.form-checkbox input {
    margin-right: 6px;
}

.form-extras {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.btn-submit {
    width: 100%;
    background: #00bcd4;
    border: none;
    color: #fff;
    padding: 10px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #0097a7;
}

.user-panel h2 {
    text-align: center;
    color: #fff;
}

.user-panel .highlight {
    color: #00e5ff;
}

.user-links {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.user-links li {
    margin-bottom: 10px;
    text-align: center;
}

.dark-link {
    color: #00bcd4;
    text-decoration: none;
}

.dark-link:hover {
    text-decoration: underline;
}

.info-message,
.error-message {
    text-align: center;
    margin: 15px 0;
    padding: 10px;
    border-radius: 6px;
}

.info-message {
    background: #2c3e50;
    color: #76d7c4;
}

.error-message {
    background: #c0392b;
    color: #fff;
}

.collapsible-item {
    border-bottom: 1px solid #333;
}

.collapsible-toggle {
    width: 100%;
    background: none;
    color: #00bcd4;
    text-align: left;
    font-weight: bold;
    padding: 12px 15px;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s ease;
}

.collapsible-toggle:hover,
.collapsible-toggle.active {
    background: #2c2c2c;
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #1b1b1b;
    color: #ccc;
    padding: 0 25px;
}
