@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Noto+Sans+SC:wght@400;700&display=swap');
        
:root {
    --gold: #FFD700;
    --red: #DC143C;
    --dark-red: #8B0000;
    --imperial-blue: #002FA7;
    --bronze: #CD7F32;
    --silver: #C0C0C0;
    --platinum: #E5E4E2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #000000 !important;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Cinzel', serif;
    background: radial-gradient(ellipse at center, #0a0a23 0%, #000000 70%) !important;
    background-attachment: fixed !important;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

.chinese-font {
    font-family: 'Noto Sans SC', sans-serif;
}

.glow-text {
    text-shadow: 
        0 0 3px var(--gold),
        0 0 6px rgba(255, 215, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(45deg, var(--gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(2deg); }
    66% { transform: translateY(-5px) rotate(-1deg); }
}

.pulse-glow {
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 0 8px rgba(255, 215, 0, 0.2);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        transform: scale(1.01);
    }
}

.particle-system {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: sparkle 5s linear infinite;
}

@keyframes sparkle {
    0% { 
        opacity: 0; 
        transform: translateY(100vh) scale(0) rotate(0deg); 
    }
    10% { 
        opacity: 1; 
        transform: translateY(90vh) scale(1) rotate(36deg); 
    }
    90% { 
        opacity: 1; 
        transform: translateY(10vh) scale(1) rotate(324deg); 
    }
    100% { 
        opacity: 0; 
        transform: translateY(0vh) scale(0) rotate(360deg); 
    }
}

.hover-lift {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-lift:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(220, 20, 60, 0.1));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navbar-glass {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(45deg, var(--gold), #FFA500);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--gold);
}

.nav-links a.active::after {
    width: 100%;
}

.account-dropdown {
    position: relative;
}

        .account-btn {
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Cinzel', serif;
            font-size: 1rem;
        }

.account-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(10, 10, 35, 0.95));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 1rem 0;
    min-width: 200px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(255, 215, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.account-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Cinzel', serif;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(255, 215, 0, 0.1);
    border-left-color: var(--gold);
    color: var(--gold);
    padding-left: 2rem;
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    margin: 0.5rem 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    filter: drop-shadow(0 0 2px #ffcc00) 
            drop-shadow(0 0 4px #ff9900);
    transition: 0.3s ease-in-out;
    text-decoration: none;
    color: white;
}

.logo:hover {
    filter: drop-shadow(0 0 4px #ffd700) 
            drop-shadow(0 0 8px #ffa500);
    transform: scale(1.03);
}

.logo h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 900;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(45deg, var(--gold), #FFA500);
    color: black;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #FFA500, var(--gold));
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 215, 0, 0.5);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Dragon Decorations */
.dragon-decoration {
    position: absolute;
    font-size: 15rem;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
    animation: float 12s ease-in-out infinite;
}

.dragon-decoration.left {
    top: 20%;
    left: -5%;
    transform: rotate(-15deg);
}

.dragon-decoration.right {
    top: 60%;
    right: -5%;
    transform: rotate(15deg);
    animation-direction: reverse;
}

.dragon-decoration.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25rem;
    opacity: 0.02;
}

/* News Section */
.news-section {
  /* padding: 80rem 0; */
    position: relative;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.news-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(220, 20, 60, 0.1));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: all 0.8s ease;
}

.news-card:hover::before {
    left: 100%;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.6);
}

.news-date {
    background: linear-gradient(45deg, var(--gold), #FFA500);
    color: black;
    padding: 1rem;
    text-align: center;
    font-weight: 900;
    font-family: 'Cinzel', serif;
    position: relative;
    z-index: 2;
}

.news-date .day {
    display: block;
    font-size: 2rem;
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    flex: 1;
}

.news-read-more {
    background: transparent;
    border: 2px solid rgba(255, 215, 0, 0.5);
    color: var(--gold);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    backdrop-filter: blur(10px);
}

.news-read-more:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--gold);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Features Section */
.features-section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(220, 20, 60, 0.1));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: all 0.8s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.6);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    animation: float 4s ease-in-out infinite;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(220, 20, 60, 0.05));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Screenshots Section */
.screenshots-section {
    padding: 8rem 0;
    position: relative;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.screenshot-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(220, 20, 60, 0.1));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    height: 300px;
}

.screenshot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: all 0.8s ease;
}

.screenshot-card:hover::before {
    left: 100%;
}

.screenshot-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.6);
}

.screenshot-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.screenshot-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    animation: float 4s ease-in-out infinite;
}

.screenshot-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.screenshot-placeholder p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.4;
}

/* Footer Styles */
.footer-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(10, 10, 35, 0.95));
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    padding: 4rem 0 2rem;
}

.footer-content {
    color: white;
}

.footer-main {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 600px;
    text-align: center;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    margin-bottom: 2rem;
}

.footer-bottom-content {
    text-align: center;
}

.footer-bottom-content p {
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.footer-bottom-content p:first-child {
    font-size: 0.9rem;
}

.footer-bottom-content p:last-child {
    font-size: 0.85rem;
    font-style: italic;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(10, 10, 35, 0.95));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 3rem;
    max-width: 450px;
    width: 90%;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(255, 215, 0, 0.2);
    transform: scale(0.8) translateY(-50px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: all 0.8s ease;
}

.modal:hover::before {
    left: 100%;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.modal-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.modal-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    font-family: 'Noto Sans SC', sans-serif;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.modal-close:hover {
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold);
    transform: rotate(90deg);
}

.modal-form {
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    color: white;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.15);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-submit {
    width: 100%;
    background: linear-gradient(45deg, var(--gold), #FFA500);
    color: black;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.form-submit:hover::before {
    left: 100%;
}

.form-submit:hover {
    background: linear-gradient(45deg, #FFA500, var(--gold));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.form-links {
    text-align: center;
    margin-top: 1.5rem;
}

.form-link {
    color: rgba(255, 215, 0, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.form-link:hover {
    color: var(--gold);
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.divider span {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(10, 10, 35, 0.95));
    padding: 0 1rem;
    color: rgba(255, 215, 0, 0.8);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-message {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

/*.error-message { hasan
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff6b6b;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* News Modal Styles */
.news-modal {
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
}

.news-modal-content {
    position: relative;
    z-index: 2;
}

.news-modal-date {
    background: linear-gradient(45deg, var(--gold), #FFA500);
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-modal-body {
    line-height: 1.7;
    font-size: 1rem;
}

.news-modal-body h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin: 2rem 0 1rem 0;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.news-modal-body h5 {
    color: var(--gold);
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem 0;
    font-weight: 600;
}

.news-modal-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.news-modal-body li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.news-modal-body p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.technique-card {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.technique-card:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.technique-card h5 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.technique-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.schedule-day {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem 0;
    backdrop-filter: blur(10px);
}

.schedule-day h5 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 1.1rem;
}

.schedule-day ul {
    margin: 0;
}

.news-modal-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    flex-wrap: wrap;
}

.news-modal-cta .btn-primary,
.news-modal-cta .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

/* Scrollbar styling for news modals */
.news-modal::-webkit-scrollbar {
    width: 8px;
}

.news-modal::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.news-modal::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--gold), #FFA500);
    border-radius: 10px;
}

.news-modal::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #FFA500, var(--gold));
}

/* Screenshot Modal Styles */
.screenshot-modal {
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
}

.screenshot-modal-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.screenshot-display {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(220, 20, 60, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshot-large-icon {
    font-size: 8rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

.screenshot-modal-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.screenshot-modal-description {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.screenshot-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.screenshot-feature {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 1rem;
    backdrop-filter: blur(5px);
}

.screenshot-feature h4 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.screenshot-feature p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }
}

/* Scroll animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Server Status Widget Styles */
.server-widget {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.widget-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(220, 20, 60, 0.1));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 1rem;
    padding: 1rem;
    width: 16rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.widget-card:hover {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.widget-title {
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.server-status {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-label {
    font-size: 0.875rem;
    color: #d1d5db;
}

.status-value {
    font-size: 0.875rem;
    font-weight: 700;
}

.online-indicator {
    display: flex;
    align-items: center;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #4ade80;
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

.online-text {
    font-size: 0.75rem;
    color: #4ade80;
}

.player-count {
    color: #60a5fa;
}

.max-players {
    color: #4ade80;
}

.discord-widget {
    text-align: center;
}

.discord-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.discord-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.5rem;
    color: #818cf8;
}

.discord-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: #818cf8;
    margin-bottom: 0.25rem;
}

.discord-label {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.discord-btn {
    width: 100%;
    background: linear-gradient(45deg, var(--gold), #FFA500);
    color: black;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    font-size: 0.875rem;
    text-decoration: none;
    display: block;
    text-align: center;
}

.discord-btn:hover {
    background: linear-gradient(45deg, #FFA500, var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
/* Password Reset Page Styles */
.reset-password-page .modal-overlay {
    backdrop-filter: blur(20px);
}

.reset-password-page .modal {
    transform: none !important;
    position: relative;
}

.reset-password-page .form-input {
    width: 100%;
}
/* Downloads Page Styles */
.downloads-section {
    padding: 8rem 0 4rem;
    min-height: 100vh;
    position: relative;
}

.downloads-header {
    text-align: center;
    margin-bottom: 4rem;
}

.downloads-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.downloads-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.downloads-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.8;
}

/* Format Selection Styles */
.format-selection {
    margin-top: 3rem;
    text-align: center;
}

.format-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2rem;
}

.format-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.format-btn {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(220, 20, 60, 0.1));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    color: white;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: 280px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.format-btn:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(220, 20, 60, 0.2));
}

.format-btn.active {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(220, 20, 60, 0.2));
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.format-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.format-info {
    text-align: left;
}

.format-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--gold);
}

.format-info p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
    line-height: 1.4;
}

/* Download Categories */
.download-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.download-category {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(220, 20, 60, 0.1));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.download-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.category-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0;
}

.download-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: all 0.8s ease;
}

.download-item:hover::before {
    left: 100%;
}

.download-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateX(10px);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.item-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
}

.item-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.4;
}

.item-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.item-size {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
}

.item-version {
    font-size: 0.8rem;
    opacity: 0.7;
}

.download-btn {
    background: linear-gradient(45deg, var(--gold), #FFA500);
    color: black;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
    width: auto;
    justify-content: center;
    margin-top: 1rem;
    text-decoration: none;
    align-self: flex-start;
}

.download-btn:hover {
    background: linear-gradient(45deg, #FFA500, var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.download-btn:active {
    transform: translateY(0);
}

.download-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Dragon Decorations */
.dragon-decoration {
    position: absolute;
    font-size: 6rem;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.dragon-decoration.top-left {
    top: 15%;
    left: 5%;
}

.dragon-decoration.bottom-right {
    bottom: 15%;
    right: 5%;
    animation-direction: reverse;
}

.dragon-decoration.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12rem;
    opacity: 0.05;
}

/* System Requirements */
.system-requirements {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(220, 20, 60, 0.1));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 4rem;
}

.requirements-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.requirement-category h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 0.5rem;
}

.requirement-category ul {
    list-style: none;
    padding: 0;
}

.requirement-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
}

.requirement-category li:last-child {
    border-bottom: none;
}

.req-label {
    opacity: 0.8;
}

.req-value {
    color: var(--gold);
    font-weight: 600;
}

/* Store Page Styles */
.store-section {
    padding: 8rem 0 4rem;
    min-height: 100vh;
    position: relative;
}

.store-header {
    text-align: center;
    margin-bottom: 4rem;
}

.store-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.store-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.store-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.8;
}

/* Store Categories */
.store-categories {
    margin-bottom: 4rem;
}

.category-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.category-btn:hover,
.category-btn.active {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(220, 20, 60, 0.1));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: all 0.8s ease;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.6);
}

.product-image {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.product-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    animation: float 4s ease-in-out infinite;
}

.product-rarity {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, var(--gold), #FFA500);
    color: black;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    text-align: center;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 0.7rem;
    opacity: 0.7;
    text-transform: uppercase;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
}

.price-original {
    font-size: 1rem;
    opacity: 0.6;
    text-decoration: line-through;
}

.discount-badge {
    background: var(--red);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
}

.buy-btn {
    background: linear-gradient(45deg, var(--gold), #FFA500);
    color: black;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.buy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.buy-btn:hover::before {
    left: 100%;
}

.buy-btn:hover {
    background: linear-gradient(45deg, #FFA500, var(--gold));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.buy-btn:active {
    transform: translateY(-1px);
}

/* Dragon Decorations */
.dragon-decoration {
    position: absolute;
    font-size: 6rem;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.dragon-decoration.top-left {
    top: 15%;
    left: 5%;
}

.dragon-decoration.bottom-right {
    bottom: 15%;
    right: 5%;
    animation-direction: reverse;
}

.dragon-decoration.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12rem;
    opacity: 0.05;
}

/* Special Effects */
.legendary {
    border-color: var(--gold) !important;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4) !important;
}

.epic {
    border-color: #9932CC !important;
    box-shadow: 0 0 20px rgba(153, 50, 204, 0.3) !important;
}

.rare {
    border-color: #0080FF !important;
    box-shadow: 0 0 15px rgba(0, 128, 255, 0.3) !important;
}

.common {
    border-color: #808080 !important;
}
/* Dashboard Page Styles */
.dashboard-header {
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
}

.dashboard-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.dashboard-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.dashboard-welcome {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(220, 20, 60, 0.1));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 2rem;
    margin-bottom: 4rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-text {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.welcome-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.welcome-stat {
    text-align: center;
}

.welcome-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.welcome-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Dashboard Grid */
.dashboard-main {
    padding: 0 0 8rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.dashboard-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(220, 20, 60, 0.1));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: all 0.8s ease;
}

.dashboard-card:hover::before {
    left: 100%;
}

.dashboard-card:hover {
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.6);
}

.card-header {
    background: linear-gradient(45deg, var(--gold), #FFA500);
    color: black;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.card-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

.card-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.card-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

/* Profile Status Styles */
.profile-info {
    text-align: center;
}

.profile-level {
    margin-bottom: 2rem;
}

.level-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    margin-bottom: 0.5rem;
}

.level-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-stats {
    margin-bottom: 2rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    font-weight: 600;
    opacity: 0.8;
}

.stat-value {
    font-weight: 700;
}

.gold-text {
    color: var(--gold);
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.xp-progress {
    text-align: left;
}

.progress-bar {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    height: 8px;
    margin: 0.5rem 0;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    background: linear-gradient(45deg, var(--gold), #FFA500);
    height: 100%;
    border-radius: 10px;
    transition: width 0.8s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.progress-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Training Stats Styles */
.training-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.training-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.training-stat:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.training-stat .stat-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
}

.training-stat .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.training-stat .stat-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 600;
}

/* Achievements Styles */
.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateX(5px);
}

.achievement-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
}

.achievement-info {
    flex: 1;
}

.achievement-name {
    display: block;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.achievement-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

.achievement-date {
    font-size: 0.8rem;
    opacity: 0.6;
    font-style: italic;
}

/* Daily Tasks Styles */
.daily-tasks {
    margin-bottom: 2rem;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.task-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
}

.task-item.completed {
    background: rgba(0, 255, 0, 0.05);
    border-color: rgba(0, 255, 0, 0.3);
}

.task-checkbox {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
}

.task-item.completed .task-checkbox {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 2px solid rgba(0, 255, 0, 0.5);
}

.task-item:not(.completed) .task-checkbox {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.task-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.task-name {
    font-weight: 600;
}

.task-reward {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 700;
}

.daily-progress {
    text-align: center;
}

.progress-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Goals Styles */
.goals-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.goal-item {
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.goal-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.goal-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.goal-name {
    font-weight: 700;
    color: var(--gold);
}

.goal-progress {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 600;
}

/* Friends Styles */
.friends-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.friend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.friend-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateX(5px);
}

.friend-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--gold), #FFA500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.friend-info {
    flex: 1;
}

.friend-name {
    display: block;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.friend-status {
    font-size: 0.9rem;
    opacity: 0.8;
}

.friend-status.online {
    color: #00ff00;
}

.friend-status.offline {
    opacity: 0.6;
}

.friend-level {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Action Buttons */
.btn-primary {
    background: linear-gradient(45deg, var(--gold), #FFA500);
    color: black;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #FFA500, var(--gold));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 215, 0, 0.5);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Purchase Item Styles */
.purchases-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.purchase-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.purchase-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateX(5px);
}

.purchase-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
}

.purchase-info {
    flex: 1;
}

.purchase-name {
    display: block;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.purchase-date {
    font-size: 0.9rem;
    opacity: 0.8;
}

.purchase-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Settings Item Styles */
.settings-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.setting-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.setting-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateX(5px);
}

.setting-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
}

.setting-info {
    flex: 1;
}

.setting-name {
    display: block;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.setting-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

.setting-arrow {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 700;
}



.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link:hover {
    color: var(--gold);
    opacity: 1;
    transform: translateX(5px);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    margin: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    margin: 0;
    opacity: 0.6;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: white;
    text-decoration: none;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--gold);
    opacity: 1;
}

/* Account Management Styles */
.account-management-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    min-height: 500px;
}

.account-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateX(5px);
}

.nav-item.active {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.nav-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
}

.nav-info {
    flex: 1;
}

.nav-name {
    display: block;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.nav-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

.account-content {
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    padding: 2rem;
    min-height: 500px;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.section-desc {
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.account-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: white;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    background: rgba(0, 0, 0, 0.4);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.password-requirements {
    margin-top: 0.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem;
}

.requirement {
    font-size: 0.8rem;
    color: #00ff00;
    opacity: 0.8;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.security-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 10px;
    margin-top: 2rem;
}

.notice-icon {
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.notice-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

.current-email {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 2rem;
}

.current-email .label {
    font-weight: 600;
    opacity: 0.8;
}

.current-email .email {
    font-weight: 700;
    color: var(--gold);
}

.email-process {
    margin-top: 2rem;
}

.email-process h5 {
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, var(--gold), #FFA500);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.balance-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.balance-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    text-align: center;
}

.balance-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.balance-amount {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.purchase-history {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.purchase-item-detailed {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.purchase-item-detailed:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateX(5px);
}

.purchase-item-detailed .purchase-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
}

.purchase-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.purchase-details .purchase-name {
    font-weight: 700;
    color: var(--gold);
}

.purchase-details .purchase-date {
    font-size: 0.8rem;
    opacity: 0.7;
}

.purchase-details .purchase-category {
    font-size: 0.8rem;
    opacity: 0.6;
    font-style: italic;
}

.purchase-item-detailed .purchase-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .account-management-container {
        grid-template-columns: 250px 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .account-management-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .account-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .nav-item {
        min-width: 200px;
        flex-shrink: 0;
    }

    .balance-info {
        grid-template-columns: 1fr;
    }

    .password-requirements {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .training-stats {
        grid-template-columns: 1fr;
    }

    .welcome-stats {
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .dashboard-card {
        min-width: auto;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Scroll animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* error-glass-card CSS'i için düzeltme */
.error-glass-card,
.error-message {
    position: fixed;
    top: 80px; /* Navbar'ın yüksekliğine göre ayarlandı */
    left: 50%;
    transform: translateX(-50%);
    max-width: 400px;
    padding: 1rem 1.5rem;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 10px;
    color: #ff6b6b;
    font-weight: 600;
    text-align: center;
    backdrop-filter: blur(10px);
    z-index: 10000; /* navbar z-index'inden daha yüksek bir değer */
    pointer-events: none;
    animation: slideInFade 0.5s forwards;
}

/* Navbar'ın z-index'i, pop-up'tan daha düşük olmalı */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    padding: 1rem 0;
}

/* Animasyonlar */
@keyframes slideInFade {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideOutFade {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}
/* Admin Panel Styles */
.admin-panel-page body {
    background-image: none;
    background-color: #1a1a2e;
}

.admin-container {
    padding-top: 100px;
    padding-bottom: 50px;
    min-height: 100vh;
}

.admin-content-card {
    margin-bottom: 2rem;
}

.admin-form .form-input, .admin-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 5px;
    background: rgba(0,0,0,0.3);
    color: white;
}

.admin-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    overflow: hidden;
}

.admin-table th, .admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,215,0,0.1);
}

.admin-table th {
    background: rgba(255,215,0,0.1);
    font-weight: 700;
}

.admin-action-btn {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    color: black;
    font-weight: 600;
}

.edit-btn {
    background: var(--gold);
}

.delete-btn {
    background: var(--red);
    color: white;
}

       /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(10, 10, 35, 0.95));
            border-top: 1px solid rgba(255, 215, 0, 0.3);
            padding: 4rem 0 2rem;
            margin-top: 4rem;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: var(--gold);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
        }

        .footer-section p, .footer-section li {
            line-height: 1.6;
            opacity: 0.9;
            margin-bottom: 0.5rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            padding: 0.3rem 0;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .footer-section ul li:hover {
            color: var(--gold);
            padding-left: 0.5rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 215, 0, 0.3);
            opacity: 0.8;
        }

        .footer-dragon {
            font-size: 2rem;
            margin: 0 1rem;
            animation: float 4s ease-in-out infinite;
        }
            
        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
            }		
            
     .success-section, .fail-section {
    text-align: center;
    padding: 50px 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    margin: 20px auto;
    max-width: 600px;
}
.success-title, .fail-title { font-size: 2.5em; }
.success-subtitle, .fail-subtitle { font-size: 1.5em; }
.return-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--gold);
    color: black;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s;
}
.return-btn:hover { transform: scale(1.05); }       
            
            