/* 
 * No Traitor RP
 * Unified Style Sheet
 */

/* ===== VARIABLES ===== */
:root {
    /* Main colors */
    --primary-color: #3333cc;
    --primary-dark: #2222bb;
    --primary-light: #6666ff;
    --accent-color: #FFC107;
    
    /* Background colors */
    --dark-bg: #121212;
    --darker-bg: #0A0A0A;
    --card-bg: rgba(20, 20, 30, 0.5);
    --card-hover-bg: rgba(25, 25, 35, 0.6);
    
    /* Text colors */
    --light-text: #FFFFFF;
    --gray-text: #AAAAAA;
    --muted-text: #777777;
    
    /* Border colors */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.2);
    
    /* Status colors */
    --success-color: #4BB543;
    --error-color: #ff5757;
    --warning-color: #FFC107;
    --info-color: #3498db;
    
    /* Spacing variables */
    --space-xs: 5px;
    --space-sm: 10px;
    --space-md: 20px;
    --space-lg: 40px;
    --space-xl: 80px;
    
    /* Border radius */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-round: 50%;
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

.character-required {
    background-color: rgba(20, 20, 30, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    text-align: center;
    margin: 20px 0;
}

.character-required h3 {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.character-required p {
    color: var(--gray-text);
    margin-bottom: 20px;
}

.character-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--darker-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: var(--primary-light);
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--space-sm);
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: var(--space-md);
}

ul, ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

/* ===== LAYOUT ===== */
.main-content {
    flex: 1;
    width: 100%;
    margin: 0 auto;
    padding: 80px var(--space-md) var(--space-lg);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xl) 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

/* ===== HEADER STYLES ===== */
.site-header, header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

.site-header.scrolled, header.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: var(--space-sm) var(--space-lg);
}

.logo img {
    height: 50px;
    transition: height var(--transition-normal);
}

.site-header.scrolled .logo img, header.scrolled .logo img {
    height: 40px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 var(--space-sm);
    position: relative;
}

.nav-item a {
    color: var(--gray-text);
    padding: var(--space-sm);
    display: block;
    font-weight: 500;
    position: relative;
}

.nav-item a:hover, .nav-item.active a {
    color: var(--light-text);
}

.nav-item.active a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--space-sm);
    right: var(--space-sm);
    height: 2px;
    background-color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1010;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--light-text);
    margin: 5px 0;
    transition: var(--transition-normal);
    border-radius: 3px;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--darker-bg);
    z-index: 1000;
    transition: right var(--transition-normal);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu nav {
    width: 100%;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin: var(--space-md) 0;
}

.mobile-menu a {
    color: var(--light-text);
    font-size: 1.5rem;
    display: block;
    padding: var(--space-sm) 0;
}

.mobile-menu a:hover {
    color: var(--primary-light);
}

.body-menu-open {
    overflow: hidden;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.btn i {
    margin-right: 8px;
}

.btn-outline {
    background: transparent;
    color: var(--light-text);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-light);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(51, 51, 204, 0.3);
}

.btn-accent {
    background: var(--accent-color);
    color: #000;
}

.btn-accent:hover {
    background: #e6ac00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.btn-success {
    background: var(--success-color);
    color: var(--light-text);
}

.btn-success:hover {
    background: #429a3a;
    transform: translateY(-2px);
}

.btn-danger {
    background: var(--error-color);
    color: var(--light-text);
}

.btn-danger:hover {
    background: #e04d4d;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.8rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-white {
    background: var(--light-text);
    color: var(--primary-color);
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

button:disabled,
.btn:disabled {
    background-color: var(--gray-text);
    cursor: not-allowed;
    transform: translateY(0);
    box-shadow: none;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--light-text);
    font-weight: 500;
}

.form-control, .form-input, .form-select {
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--light-text);
    transition: all var(--transition-normal);
}

.form-control:focus, .form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.15);
}

.form-control::placeholder, .form-input::placeholder {
    color: var(--gray-text);
}

.form-text, .form-note {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-top: var(--space-xs);
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.form-check-input {
    margin-right: var(--space-sm);
}

.invalid-feedback {
    color: var(--error-color);
    font-size: 0.9rem;
    margin-top: var(--space-xs);
}

.form-submit {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: var(--light-text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: var(--primary-dark);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.7), rgba(10, 10, 10, 0.9)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--darker-bg), transparent);
    z-index:2;
}

.hero-content {
    width: 100%;
    padding: 150px 80px 80px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    background-image: url(images/los.png);
    background-repeat: no-repeat;
}

.hero-text {
    max-width: 600px;
    z-index:3;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 30px;
}

.hero-image {
    position: absolute;
    right: -150px;
    bottom: 0;
    height: 160%;
    z-index: 4;
}

.hero-image img {
    height: 100%;
    object-fit: contain;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--light-text);
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 10;
}

.scroll-down i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 100px 80px;
    background-color: var(--dark-bg);
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-text);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(51, 51, 204, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-text {
    color: var(--gray-text);
    line-height: 1.6;
}

/* ===== SERVER INFO SECTION ===== */
.server-info {
    padding: 100px 80px;
    background: linear-gradient(135deg, rgba(25, 25, 35, 0.5) 0%, rgba(10, 10, 15, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.info-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.info-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.info-image img {
    width: 100%;
    height: auto;
    display: block;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.info-text p {
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.info-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--gray-text);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== COMMUNITY SECTION ===== */
.community {
    padding: 100px 80px;
    background-color: var(--darker-bg);
    position: relative;
}

.community-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.community-text {
    flex: 1;
}

.community-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.community-text p {
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 30px;
}

.community-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.community-card {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.community-card:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.community-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.community-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.community-card p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.png');
    opacity: 0.1;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* ===== CARDS ===== */
.card {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    transition: all var(--transition-normal);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(51, 51, 204, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: var(--space-sm);
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.card-body {
    color: var(--gray-text);
}

.card-footer {
    border-top: 1px solid var(--border-color);
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    display: flex;
    justify-content: flex-end;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--light-text);
}

.card-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.card-description {
    color: var(--gray-text);
    line-height: 1.6;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.card-stretch, .stretch-card {
    grid-column: 1 / -1;
}

/* ===== FOOTER STYLES ===== */
.site-footer, footer {
    padding: 60px 80px 30px;
    background-color: var(--darker-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--light-text);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: var(--gray-text);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

/* ===== DASHBOARD STYLES ===== */
.dashboard {
    min-height: 100vh;
    background-color: var(--darker-bg);
}

.dashboard-header {
    background: linear-gradient(135deg, rgba(25, 25, 35, 0.8), rgba(10, 10, 15, 0.9));
    padding: 60px 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dashboard-subtitle {
    color: var(--gray-text);
    font-size: 1.1rem;
}

.dashboard-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    padding: 40px 80px;
}

.sidebar {
    background-color: rgba(20, 20, 30, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.user-info {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--light-text);
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.user-status {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.supporter-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-top: 5px;
}

.nav-menu {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.nav-item {
    padding: 0;
    margin-bottom: 5px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--gray-text);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-link:hover, .nav-link.active {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    border-left-color: var(--primary-color);
}

.nav-link i {
    margin-right: 10px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.logout-btn {
    display: block;
    margin: 20px;
    padding: 12px 20px;
    background-color: rgba(255, 87, 87, 0.1);
    color: #ff5757;
    border: 1px solid rgba(255, 87, 87, 0.2);
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background-color: rgba(255, 87, 87, 0.2);
}

/* ===== ACTIVITY LIST STYLES ===== */
.activity-list {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.activity-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(51, 51, 204, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-size: 1rem;
    margin-bottom: 5px;
}

.activity-time {
    color: var(--gray-text);
    font-size: 0.8rem;
}

/* ===== CHARACTER CARD STYLES ===== */
.character-card {
    background-color: rgba(20, 20, 30, 0.5);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

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

.character-name {
    margin: 0;
    color: var(--light-text);
    font-size: 1.2rem;
    font-weight: 600;
}

.character-status {
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 5px;
}

.status-online {
    background-color: #4BB543;
    color: white;
}

.status-offline {
    background-color: rgba(255, 87, 87, 0.2);
    color: #ff5757;
}

.character-info {
    margin-bottom: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.info-label {
    color: var(--gray-text);
}

.info-value {
    color: var(--light-text);
    font-weight: 500;
}

.character-vehicles {
    margin-bottom: 15px;
}

.vehicles-title {
    margin-bottom: 10px;
    color: var(--light-text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
    font-size: 1rem;
    font-size:20px;
}

.vehicles-list {
    max-height: 150px;
    overflow-y: auto;
}

.vehicle-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.vehicle-model {
    color: var(--light-text);
}

.vehicle-plate {
    color: var(--gray-text);
    font-family: monospace;
}

.character-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    flex: 1;
    font-size: 0.9rem;
    padding: 8px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ===== VEHICLES PAGE STYLES ===== */
.vehicles-page {
    min-height: 100vh;
    background-color: var(--darker-bg);
}

.vehicles-header {
    background: linear-gradient(135deg, rgba(25, 25, 35, 0.8), rgba(10, 10, 15, 0.9));
    padding: 40px 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vehicles-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--light-text);
}

.vehicles-subtitle {
    color: var(--gray-text);
    font-size: 1.1rem;
}

.vehicles-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.vehicle-card {
    background-color: rgba(20, 20, 30, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(51, 51, 204, 0.3);
}

.vehicle-image {
    width: 100%;
    height: 200px;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-image i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.vehicle-content {
    padding: 20px;
}

.vehicle-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--light-text);
}

.vehicle-plate {
    font-size: 1.2rem;
    background-color: rgba(50, 50, 50, 0.6);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
    font-family: monospace;
    letter-spacing: 1px;
}

.vehicle-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.vehicle-button {
    flex: 1;
    padding: 8px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vehicle-button:hover {
    background-color: var(--primary-color);
}

.empty-state {
    text-align: center;
    padding: 50px 20px;
    background-color: rgba(20, 20, 30, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.empty-state i {
    font-size: 4rem;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--light-text);
}

.empty-state p {
    color: var(--gray-text);
    max-width: 500px;
    margin: 0 auto 20px;
}

/* ===== MODALS ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--dark-bg);
    border-radius: var(--radius-md);
    max-width: 500px;
    width: 90%;
    padding: 30px;
    position: relative;
    border: 1px solid var(--border-color);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close, .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--gray-text);
    cursor: pointer;
    transition: all var(--transition-normal);
    background: none;
    border: none;
}

.modal-close:hover, .close-modal:hover {
    color: var(--light-text);
}

.modal-header {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-size: 1.5rem;
    margin: 0;
}

.modal-body {
    margin-bottom: var(--space-md);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* ===== PAYMENT OPTIONS ===== */
.payment-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.payment-option {
    flex: 1;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-text);
}

.payment-option:first-child {
    border-radius: 5px 0 0 5px;
}

.payment-option:last-child {
    border-radius: 0 5px 5px 0;
}

.payment-option.active {
    background-color: var(--primary-color);
    color: var(--light-text);
    border-color: var(--primary-color);
}

.payment-option i {
    margin-right: 5px;
}

.payment-button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: var(--light-text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-button:hover {
    background-color: var(--primary-dark);
}

/* ===== LOGIN STYLES ===== */
.login-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.7), rgba(10, 10, 10, 0.9)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 20px;
}

.login-form {
    background-color: rgba(20, 20, 30, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header img {
    height: 60px;
    margin-bottom: 20px;
}

.login-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-header p {
    color: var(--gray-text);
}

.discord-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    background-color: #5865F2;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 30px 0;
}

.discord-login-btn:hover {
    background-color: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

.discord-login-btn i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.info-text {
    text-align: center;
    color: var(--gray-text);
    margin-top: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.back-home {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--light-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.back-home:hover {
    color: var(--primary-light);
}

/* ===== ALERTS ===== */
.alert {
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    border-left: 4px solid transparent;
}

.alert-success {
    background-color: rgba(75, 181, 67, 0.1);
    border-color: var(--success-color);
    color: var(--success-color);
}

.alert-danger {
    background-color: rgba(255, 87, 87, 0.1);
    border-color: var(--error-color);
    color: var(--error-color);
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    border-color: var(--warning-color);
    color: var(--warning-color);
}

.alert-info {
    background-color: rgba(52, 152, 219, 0.1);
    border-color: var(--info-color);
    color: var(--info-color);
}

.error-message {
    color: var(--error-color);
    margin-bottom: 15px;
    background-color: rgba(255, 87, 87, 0.1);
    padding: 10px;
    border-radius: 5px;
    border-left: 3px solid var(--error-color);
}

/* ===== STRIPE CARD ELEMENT ===== */
#card-element, #item-card-element {
    padding: 15px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    margin-bottom: 20px;
}

/* ===== SUPPORTER PAGE STYLES ===== */
.supporter-page {
    min-height: 100vh;
    padding-top: 80px;
    background-color: var(--darker-bg);
}

.supporter-header {
    background: linear-gradient(135deg, rgba(25, 25, 35, 0.8), rgba(10, 10, 15, 0.9));
    padding: 60px 80px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.supporter-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--light-text);
}

.supporter-subtitle {
    color: var(--gray-text);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.supporter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.package-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.package-card {
    background-color: rgba(20, 20, 30, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(51, 51, 204, 0.2);
    border-color: var(--primary-color);
}

.current-package {
    background-color: rgba(51, 51, 204, 0.1);
    border-color: var(--primary-color);
}

.current-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-header {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--light-text);
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.package-price {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.package-duration {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.package-description {
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.5;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
    padding: 0;
}

.benefit-item {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--gray-text);
}

.benefit-item::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.package-button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: var(--light-text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.package-button:disabled {
    background-color: var(--gray-text);
    cursor: not-allowed;
}

/* ===== STORE ITEMS STYLES ===== */
.store-container {
    margin-top: 80px;
}

.item-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-button {
    padding: 10px 20px;
    margin: 0 5px 5px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--gray-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-button.active, .filter-button:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.item-card {
    background-color: rgba(20, 20, 30, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(51, 51, 204, 0.3);
}

.item-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.item-content {
    padding: 20px;
}

.item-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--light-text);
}

.item-description {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

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

.price-tag {
    color: var(--light-text);
    font-weight: 600;
    font-size: 1.1rem;
}

.reward-price {
    color: var(--accent-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.reward-price i {
    margin-right: 5px;
}

.supporter-required {
    color: var(--primary-light);
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.supporter-required i {
    margin-right: 5px;
}

.item-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: var(--light-text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.item-button:hover {
    background-color: var(--primary-dark);
}

.item-button:disabled {
    background-color: var(--gray-text);
    cursor: not-allowed;
}

.login-required {
    text-align: center;
    padding: 40px;
    background-color: rgba(20, 20, 30, 0.5);
    border-radius: 15px;
    margin-bottom: 30px;
}

.login-required h3 {
    margin-bottom: 15px;
    color: var(--light-text);
}

.login-required p {
    color: var(--gray-text);
    margin-bottom: 20px;
}

/* ===== PAYMENT CONFIRMATION STYLES ===== */
.confirmation-page {
    min-height: 100vh;
    padding-top: 80px;
    background-color: var(--darker-bg);
}

.confirmation-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    background-color: rgba(20, 20, 30, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.confirmation-icon {
    font-size: 5rem;
    color: #4BB543;
    margin-bottom: 30px;
}

.confirmation-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light-text);
}

.confirmation-message {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 40px;
    line-height: 1.6;
}

.order-details {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: left;
}

.order-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--light-text);
    text-align: center;
}

.order-info {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.order-label {
    font-weight: 600;
    color: var(--light-text);
}

.order-value {
    color: var(--gray-text);
}

.divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--light-text);
}

.steps-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
}

.step-item {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--gray-text);
    line-height: 1.6;
}

.step-item::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

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

.receipt-email {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* ===== SPECIAL EFFECTS ===== */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glow {
    text-shadow: 0 0 10px rgba(51, 51, 204, 0.5);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .hero-image {
        height: 80%;
    }
    
    .main-content {
        padding-top: 70px;
    }
    
    .site-header, header {
        padding: 15px 30px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .dashboard-header, .vehicles-header, .supporter-header {
        padding: 40px;
    }
    
    .dashboard-container {
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .card-grid, .main-content {
        grid-template-columns: 1fr;
    }
    
    .dashboard-container {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        max-width: 100%;
    }
    
    .hero-content {
        flex-direction: column;
        padding: 150px 40px 80px;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-image {
        position: relative;
        height: auto;
        margin-top: 50px;
    }
    
    .hero-image img {
        max-height: 400px;
    }
    
    .features, .server-info, .community, .cta {
        padding: 80px 40px;
    }
    
    .info-container, .community-content {
        flex-direction: column;
    }
    
    .info-text, .community-text {
        text-align: center;
    }
    
    .info-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .nav-buttons .btn-outline {
        display: none;
    }
    
    .community-cards {
        grid-template-columns: 1fr;
    }
    
    .package-container, .vehicles-grid, .items-grid {
        grid-template-columns: 1fr;
    }
    
    .buttons {
        flex-direction: column;
    }
    
    .item-filter {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-button {
        width: 100%;
        margin: 0 0 5px 0;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .site-header, header {
        padding: var(--space-sm) var(--space-sm);
    }
    
    .main-content {
        padding: 70px var(--space-sm) var(--space-md);
    }
    
    .mobile-menu a {
        font-size: 1.2rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .info-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title, .confirmation-title, .dashboard-title, .vehicles-title, .supporter-title {
        font-size: 2rem;
    }
    
    .order-info {
        flex-direction: column;
        margin-bottom: 15px;
    }
    
    .order-label {
        margin-bottom: 5px;
    }
    
    .login-form, .confirmation-container, .modal-content {
        padding: 20px;
    }
    
    .character-actions {
        flex-direction: column;
    }
    
    footer {
        padding: 60px 40px 30px;
    }
}

/* ===== UTILITIES AND MISC ===== */
.or-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: var(--gray-text);
}

.or-divider::before,
.or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.or-divider span {
    padding: 0 10px;
    font-size: 0.9rem;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.flex-column {
    flex-direction: column;
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

/* Account Dropdown Styles */
.account-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i.fa-caret-down {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.account-dropdown:hover .dropdown-toggle i.fa-caret-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background-color: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 10px 0;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.account-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu:before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 15px;
    height: 15px;
    background-color: var(--dark-bg);
    transform: rotate(45deg);
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--gray-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
}

.dropdown-menu a i {
    width: 20px;
    text-align: center;
}

/* ===== CHARACTER PAGE STYLES ===== */
.character-page {
    min-height: 100vh;
    background-color: var(--darker-bg);
}

.character-header {
    background: linear-gradient(135deg, rgba(25, 25, 35, 0.8), rgba(10, 10, 15, 0.9));
    padding: 40px 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.character-title {
    font-size: 2.5rem;
    margin-bottom: 0;
    font-weight: 700;
    color: var(--light-text);
}

.character-container {
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
}

.character-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background-color: rgba(20, 20, 30, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(51, 51, 204, 0.3);
}

.card-header {
    padding: 20px;
    background-color: rgba(20, 20, 30, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.card-content {
    padding: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-label {
    color: var(--gray-text);
    font-weight: 500;
}

.info-value {
    color: var(--light-text);
    font-weight: 600;
}

.stat-progress {
    margin-bottom: 20px;
}

.stat-label {
    display: block;
    margin-bottom: 5px;
    color: var(--gray-text);
}

.progress-bar {
    height: 25px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: width 0.3s ease;
}

.action-buttons {
    margin-top: 20px;
}

.vehicles-panel {
    background-color: rgba(20, 20, 30, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

.section-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.action-bar {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

@media (max-width: 992px) {
    .character-container {
        grid-template-columns: 1fr;
    }
    
    .character-header {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .character-title {
        font-size: 1.8rem;
    }
    
    .character-status {
        font-size: 0.8rem;
    }
}

/* Dashboard Sections */
.dashboard-sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dashboard-section {
    margin-bottom: 10px;
}

.dashboard-section .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--light-text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

/* Card Rows */
.cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* Character Compact Card */
.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.character-compact-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.character-compact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.character-compact-card .character-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.character-compact-card .character-name {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.character-compact-card .character-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.character-compact-card .stat-item {
    display: flex;
    flex-direction: column;
}

.character-compact-card .stat-label {
    font-size: 0.8rem;
    color: var(--gray-text);
    margin-bottom: 2px;
}

.character-compact-card .stat-value {
    font-size: 1rem;
    color: var(--light-text);
    font-weight: 500;
}

.character-compact-card .character-actions {
    display: flex;
    gap: 10px;
}

.character-compact-card .action-btn {
    flex: 1;
    padding: 8px;
    text-align: center;
    font-size: 0.9rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Reward History Styles */
.rewards-history {
    padding: 5px 0;
}

.rewards-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reward-item {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reward-item:last-child {
    border-bottom: none;
}

.reward-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.reward-icon i {
    font-size: 1rem;
}

.reward-content {
    flex: 1;
}

.reward-title {
    font-size: 1rem;
    margin: 0 0 3px 0;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
}

.reward-time {
    font-size: 0.85rem;
    color: var(--gray-text);
    margin: 0;
}

.rewards-more {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rewards-toggle {
    background: none;
    border: none;
    color: var(--primary-light);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 5px 10px;
}

.rewards-toggle:hover {
    text-decoration: underline;
}

.hidden-rewards {
    display: none;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 10px;
}

/* Referral Page Specific Styles */
.referral-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.referral-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.referral-box {
    display: flex;
    flex-direction: column;
}

.referral-box .card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.referral-box .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.referral-id-section {
    text-align: center;
    margin-bottom: 20px;
}

.referral-id {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 15px;
    background-color: rgba(51, 51, 204, 0.1);
    padding: 10px;
    border-radius: 10px;
    letter-spacing: 1px;
}

.copy-btn {
    margin-bottom: 10px;
}

.referral-share-text {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-top: 5px;
}

.referral-info {
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
}

.referral-info h4, .referral-tips h4, .referral-benefits h4, .referral-rules h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--light-text);
}

.referral-info p {
    margin-bottom: 10px;
    color: var(--gray-text);
}

.referral-info ul, .referral-tips ul, .referral-benefits ul, .referral-rules ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.referral-info ul li, .referral-tips ul li, .referral-benefits ul li, .referral-rules ul li {
    margin-bottom: 5px;
}

.referral-rewards {
    list-style: none;
    padding: 0;
    margin: 0;
}

.referral-rewards li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.reward-value {
    color: var(--accent-color);
    font-weight: 600;
}

.referral-tips, .referral-benefits, .referral-rules {
    margin-bottom: 20px;
}

.referral-form-section {
    margin-bottom: 20px;
}

.referral-form .form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.submit-btn {
    width: 100%;
}

.back-link {
    text-align: center;
}

.empty-state {
    text-align: center;
    padding: 30px 0;
}

.empty-state i {
    font-size: 3rem;
    color: var(--gray-text);
    margin-bottom: 15px;
}

.empty-state h4 {
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--gray-text);
    margin-bottom: 20px;
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-danger {
    background-color: rgba(255, 87, 87, 0.1);
    border: 1px solid rgba(255, 87, 87, 0.3);
    color: #ff5757;
}

.alert-success {
    background-color: rgba(75, 181, 67, 0.1);
    border: 1px solid rgba(75, 181, 67, 0.3);
    color: #4BB543;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .referral-boxes {
        grid-template-columns: 1fr;
    }
    
    .referral-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .character-compact-card .character-stats {
        grid-template-columns: 1fr;
    }
    
    .cards-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .reward-title {
        flex-direction: column;
    }
}

/* Store Page Styles */
.store-page {
    min-height: 100vh;
    background-color: var(--darker-bg);
}

.store-header {
    background: linear-gradient(135deg, rgba(25, 25, 35, 0.8), rgba(10, 10, 15, 0.9));
    padding: 60px 80px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.store-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--light-text);
}

.store-subtitle {
    color: var(--gray-text);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.store-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* Updated Supporter Page Styles */
.current-package-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 15px;
}

.current-package-badge i {
    margin-right: 8px;
}

.current-subscription {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.subscription-details, .upgrade-options {
    background-color: rgba(20, 20, 30, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
}

.subscription-details h2, .upgrade-options h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--light-text);
    text-align: center;
}

.upgrade-options p {
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 25px;
}

.current-package-card {
    background-color: rgba(30, 30, 40, 0.7);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subscription-info {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-label {
    color: var(--gray-text);
}

.info-value {
    color: var(--light-text);
    font-weight: 500;
}

.status-active {
    color: var(--success-color);
}

.status-expired {
    color: var(--error-color);
}

.package-benefits {
    padding: 20px;
}

.package-benefits h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--light-text);
}

.upgrade-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.upgrade-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.upgrade-card .package-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.upgrade-card .benefits-list {
    flex-grow: 1;
}

.cancel-form {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.cancel-btn {
    background-color: rgba(255, 87, 87, 0.1);
    color: #ff5757;
    border: 1px solid rgba(255, 87, 87, 0.3);
    padding: 10px 20px;
    font-size: 0.9rem;
}

.cancel-btn:hover {
    background-color: rgba(255, 87, 87, 0.2);
}

.supporter-info {
    background-color: rgba(51, 51, 204, 0.1);
    border: 1px solid rgba(51, 51, 204, 0.2);
    border-radius: 10px;
    padding: 25px;
    margin-top: 40px;
}

.supporter-info h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--light-text);
}

.supporter-info p {
    color: var(--gray-text);
    margin-bottom: 15px;
}

.supporter-info ul {
    color: var(--gray-text);
    padding-left: 20px;
    margin-bottom: 20px;
}

.supporter-info li {
    margin-bottom: 8px;
}

.success-message {
    background-color: rgba(75, 181, 67, 0.1);
    border: 1px solid rgba(75, 181, 67, 0.3);
    color: #4BB543;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .current-subscription {
        grid-template-columns: 1fr;
    }
    
    .subscription-details, .upgrade-options {
        margin-bottom: 30px;
    }
    
    .store-header, .supporter-header {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .upgrade-packages {
        grid-template-columns: 1fr;
    }
}

/* Additional styles for subscription management */
.status-active {
    color: var(--success-color);
    font-weight: 600;
}

.status-canceling {
    color: var(--warning-color);
    font-weight: 600;
}

.status-none {
    color: var(--gray-text);
    font-style: italic;
}

.cancel-note {
    color: var(--gray-text);
    font-size: 0.85rem;
    margin-top: 10px;
    text-align: center;
}

.cancel-info {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.cancel-info p {
    color: var(--warning-color);
    margin-bottom: 15px;
}

.payment-request-button-container {
    margin-bottom: 20px;
}

.payment-terms {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-terms p {
    color: var(--gray-text);
    font-size: 0.85rem;
    text-align: center;
}

/* Stripe elements container */
#card-element {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

/* Payment request button (Apple Pay, Google Pay) */
.payment-request-button {
    margin-bottom: 20px;
}

/* Spinner animation */
@keyframes spinner {
    to {transform: rotate(360deg);}
}

.spinner {
    margin: 0 auto;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--light-text);
    animation: spinner 0.6s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

/* Subscription management on mobile */
@media (max-width: 992px) {
    .payment-button {
        width: 100%;
    }
    
    .current-subscription {
        grid-template-columns: 1fr;
    }
    
    .subscription-details, .upgrade-options {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .package-header {
        padding: 15px;
    }
    
    .package-name {
        font-size: 1.3rem;
    }
    
    .package-price {
        font-size: 1.2rem;
    }
    
    .subscription-info .info-row {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
    }
    
    .subscription-info .info-label {
        margin-bottom: 5px;
    }
}

/* Referral stats styles */
.referral-section {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-bottom:30px;
}

.section-title {
    text-align: center;
    margin-bottom: 25px;
    color: var(--light-text);
    font-size: 1.5rem;
}

.referral-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.stats-card {
    flex: 1;
    background-color: rgba(20, 20, 30, 0.5);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(51, 51, 204, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-content {
    flex: 1;
}

.stats-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-text);
    display: block;
    margin-bottom: 5px;
}

.stats-label {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.referral-table {
    background-color: rgba(20, 20, 30, 0.5);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-table th {
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--gray-text);
    font-weight: 500;
    font-size: 0.9rem;
}

.data-table tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.points-value {
    color: var(--accent-color);
    font-weight: 600;
}

.empty-referrals {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(20, 20, 30, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.empty-referrals i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    opacity: 0.6;
}

.empty-referrals h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--light-text);
}

.empty-referrals p {
    color: var(--gray-text);
    max-width: 400px;
    margin: 0 auto;
}

.already-referred {
    text-align: center;
    padding: 20px;
    background-color: rgba(51, 51, 204, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(51, 51, 204, 0.2);
    margin-bottom: 20px;
}

.already-referred i {
    font-size: 2rem;
    color: var(--success-color);
    margin-bottom: 10px;
}

.already-referred h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--light-text);
}

.already-referred p {
    color: var(--gray-text);
    margin-bottom: 10px;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.p-0 { padding: 0; }
.p-1 { padding: var(--space-xs); }
.p-2 { padding: var(--space-sm); }
.p-3 { padding: var(--space-md); }
.p-4 { padding: var(--space-lg); }
.p-5 { padding: var(--space-xl); }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.text-success { color: var(--success-color); }
.text-danger { color: var(--error-color); }
.text-warning { color: var(--warning-color); }
.text-info { color: var(--info-color); }
.text-muted { color: var(--gray-text); }
.text-primary { color: var(--primary-color); }

.bg-dark { background-color: var(--dark-bg); }
.bg-darker { background-color: var(--darker-bg); }
.bg-primary { background-color: var(--primary-color); }
.bg-success { background-color: var(--success-color); }
.bg-danger { background-color: var(--error-color); }

.rounded { border-radius: var(--radius-sm); }
.rounded-lg { border-radius: var(--radius-md); }
.rounded-circle { border-radius: var(--radius-round); }