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

:root {
    --primary-color: #ff0062;
    --dark-bg: #0a0a0a;
    --dark-card: #141414;
    --dark-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --gradient-primary: linear-gradient(135deg, #ff0062 0%, #ff0062 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    --shadow-glow: 0 0 30px rgba(255, 0, 98, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff0062, #ff3385);
    border-radius: 10px;
    border: 2px solid #0a0a0a;
    box-shadow: 0 0 10px rgba(255, 0, 98, 0.5);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff3385, #ff0062);
    box-shadow: 0 0 20px rgba(255, 0, 98, 0.8);
    border-color: #141414;
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #ff0062, #cc004e);
}

::-webkit-scrollbar-corner {
    background: #0a0a0a;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #ff0062 #0a0a0a;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.cursor-glow {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0 0 20px var(--primary-color);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    padding: 20px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 0, 98, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-logo {
    height: 50px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

.nav-brand i {
    color: var(--primary-color);
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s;
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
    background-image: url('../images/aboahmad.jpg');
    background-size: 100%;
    background-position: left center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.842);
    z-index: 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glitch {
    position: relative;
    animation: glitch 5s infinite;
}

@keyframes glitch {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-2px, 2px); }
    94% { transform: translate(2px, -2px); }
    96% { transform: translate(-2px, -2px); }
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 35px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-family: 'Cairo', sans-serif;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
}

.server-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    top: 9vh;
    position: relative;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-3px);
}

.stat-box i {
    font-size: 32px;
    color: #fcfbfb;
    flex-shrink: 0;
    border-bottom: 2px solid #fcfbfb;
    padding-bottom: 1vh;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
}

.stat-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    width: 400px;
    height: 400px;
    background: var(--dark-card);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 150px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #ff0062 0%, #ff00624d 100%);
    opacity: 0.5;
    z-index: -1;
}


.section-header {
    text-align: center;
    margin-bottom: 80px;
    padding-top: 20px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 700;
}

.features {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;

}

.features::before {
    content: '';
    position: absolute;
    border-radius: 100vh ;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgb(61, 61, 61) 50%, 
        rgba(255, 255, 255, 0.15) 100%);
        
}

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

.feature-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    padding: 0;
    height: 40vh;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card::after {
    position: absolute;
    top: -16px;
    right: 10px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 90px;
    color: rgba(255, 255, 255, 0.08);
    transform: rotate(-10deg);
    opacity: 0.3;
    transition: all 0.4s;
    pointer-events: none;
    z-index: 0;
}

.feature-card:nth-child(1)::after {
    content: '\f3ed';
}

.feature-card:nth-child(2)::after {
    content: '\f135';
}

.feature-card:nth-child(3)::after {
    content: '\f509';
}

.feature-card:nth-child(4)::after {
    content: '\f12e';
}

.feature-card:nth-child(5)::after {
    content: '\f086';
}

.feature-card:nth-child(6)::after {
    content: '\f06b';
}

.feature-card:hover::after {
    color: rgba(255, 255, 255, 0.15);
    transform: scale(1.1) rotate(-5deg);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
}

.feature-icon {
    width: 100%;
    height: 120px;
    background: #141414;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 0, 98, 0.1);
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: #5e5e5e;
    border-radius: 0.4vh;
    padding: 1vh;
    opacity: 0.3;
    transition: all 0.4s;
}

.feature-card:hover .feature-icon::before {
    width: 80px;
    height: 80px;
    opacity: 0.5;
}

.feature-icon i {
    font-size: 38px;
    color: #fff;
    position: relative;
    z-index: 2;
    transition: all 0.4s;
}

.feature-card:hover .feature-icon i {
    transform: rotateY(360deg);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    padding: 0 30px;
    margin-top: 25px;
    background: linear-gradient(90deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.9;
    padding: 0 30px 30px 30px;
    font-size: 15px;
}

.about {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(20, 20, 20, 0.5) 100%);
}

.about .container {
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    border-radius: 100vh;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgb(61, 61, 61) 50%, 
        rgba(255, 255, 255, 0.15) 100%);
    z-index: 1;
}

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

.about .section-header p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-top: 15px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 80px;
}

.stat-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}



.stat-card:hover {
    transform: translateY(-8px);

}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 0, 98, 0.2) 0%, rgba(255, 0, 98, 0.05) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.stat-icon::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 10%;
    padding: 1vh;
    opacity: 0.3;
}

.stat-icon i {
    font-size: 32px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.stat-info h3 {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff 0%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.glass-card {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 98, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.glass-card:hover {
    transform: translateX(-5px);
}

.glass-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 0, 98, 0.2) 0%, rgba(255, 0, 98, 0.05) 100%);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.card-icon i {
    font-size: 28px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.glass-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.glass-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

.about-main-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.main-card-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 98, 0.3) 0%, transparent 70%);
    border-radius: 50%;

    top: -100px;
    right: -100px;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.floating-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(255, 0, 98, 0.274) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.floating-icon i {
    font-size: 40px;
    color: #fff;
}

.about-main-card h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

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

.feature-item:hover {
    padding-right: 10px;
}

.feature-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(255, 0, 98, 0.5);
    position: relative;
}

.feature-dot::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.feature-item span {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.card-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.jobs {
    padding: 100px 0;
    background: var(--gradient-dark);
}

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

.job-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
}

.job-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.job-icon.police {
    background: linear-gradient(135deg, #0066ff 0%, #00ccff 100%);
}

.job-icon.medic {
    background: linear-gradient(135deg, #ff0066 0%, #ff6600 100%);
}

.job-icon.mechanic {
    background: linear-gradient(135deg, #ffaa00 0%, #ff6600 100%);
}

.job-icon.taxi {
    background: linear-gradient(135deg, #ffff00 0%, #ffaa00 100%);
}

.job-icon i {
    font-size: 48px;
    color: white;
}

.job-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.job-card p {
    color: var(--text-secondary);
}

.cta {
    padding: 100px 0;
    background: var(--dark-card);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 98, 0.1) 0%, transparent 70%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

.footer {
    background: var(--dark-bg);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h3 i {
    color: var(--primary-color);
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

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

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section ul li i {
    color: var(--primary-color);
    margin-left: 10px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--dark-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.page-header {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(20, 20, 20, 0.5) 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    border-radius: 100vh;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgb(61, 61, 61) 50%, 
        rgba(255, 255, 255, 0.15) 100%);
    z-index: 1;
}

.store-header {
    padding: 180px 0 100px;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.header-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.header-icon i {
    font-size: 50px;
    color: #fff;
}

.header-content h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 7px;
    transition: all 0.3s;
}

.stat-item:hover {
    border-color: rgba(255, 0, 98, 0.3);
    transform: translateY(-3px);
}

.stat-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.stat-item span {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

.store {
    padding: 80px 0;
    position: relative;
}

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

.store-filters {
    margin-bottom: 60px;
}

.search-bar {
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
}

.search-bar i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 18px;
    pointer-events: none;
}

.search-bar input {
    width: 100%;
    padding: 12px 55px 18px 25px;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s;
    outline: none;
}

.search-bar input::placeholder {
    color: var(--text-secondary);
}

.search-bar input:focus {
    border-color: rgba(255, 0, 98, 0.3);
}

.store-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 8px 24px;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cairo', sans-serif;
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 0, 98, 0.1) 0%, rgba(255, 0, 98, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.category-btn i {
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.category-btn span {
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.category-btn:hover {
    border-color: rgba(255, 0, 98, 0.3);
    transform: translateY(-2px);
}

.category-btn:hover::before {
    opacity: 1;
}

.category-btn:hover i {
    color: var(--primary-color);
}

.category-btn.active {
    background: linear-gradient(135deg, rgba(255, 0, 98, 0.15) 0%, rgba(255, 0, 98, 0.08) 100%);
    border-color: rgba(255, 0, 98, 0.4);
    color: white;
}

.category-btn.active i {
    color: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.product-card {
    background: rgba(20, 20, 20, 0.6);
    width: 40vh;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.product-card.featured {
    border: 1px solid rgba(255, 0, 98, 0.3);
    background: rgba(255, 0, 98, 0.03);
}

.product-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.788) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.product-gallery {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-img.active {
    opacity: 1;
    position: relative;
}

.gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 5px;
    border-color: var(--primary-color);
    box-shadow: 0 2px 12px rgba(255, 0, 98, 0.6);
}

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(255, 0, 98, 0.4);
}

.product-badge.special {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.product-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.product-price {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 14px;
    margin-left: 8px;
    opacity: 0.6;
}

.price {
    font-size: 26px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--primary-color) 0%, #ff3385 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 13px;
    color: var(--text-secondary);
    margin-right: 5px;
}

.product-features {
    list-style: none;
    margin: 0 0 15px 0;
    padding: 0;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 15px;
}

.product-features li:nth-child(n+5) {
    display: none;
}

.product-features i {
    color: var(--primary-color);
    font-size: 10px;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 98, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-view-more {
    width: 100%;
    padding: 10px;
    background: rgba(255, 0, 98, 0.1);
    border: 1px solid rgba(255, 0, 98, 0.3);
    border-radius: 4px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    font-family: 'Cairo', sans-serif;
}

.btn-view-more:hover {
    background: rgba(255, 0, 98, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-view-more i {
    font-size: 14px;
}

.btn-buy {
    width: 100%;
    justify-content: center;
    margin-top: auto;
    padding: 12px;
    font-size: 14px;
}

/* Shopping Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: rgba(20, 20, 20, 0.98);
    border-left: 1px solid rgba(255, 0, 98, 0.3);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.cart-header h2 i {
    color: var(--primary-color);
}

.cart-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-secondary);
    font-size: 18px;
}

.cart-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-items::-webkit-scrollbar {
    width: 6px;
}

.cart-items::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.cart-items::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-secondary);
    gap: 15px;
}

.cart-empty i {
    font-size: 64px;
    opacity: 0.3;
}

.cart-empty p {
    font-size: 18px;
}

.cart-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    transition: all 0.3s;
}

.cart-item:hover {
    border-color: rgba(255, 0, 98, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.cart-item-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.cart-item-remove {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    padding: 8px 15px;
    color: #ff3333;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
}

.cart-item-remove:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: translateX(-3px);
}

.cart-footer {
    padding: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 10, 0.5);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.cart-total .total-price {
    color: var(--primary-color);
    font-size: 28px;
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 480px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

.product-modal {
    display: none;
    position: fixed;
    top: 0vh;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes slideDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(30px);
    }
}

.product-modal.closing {
    animation: fadeOut 0.3s ease;
}

.product-modal.closing .product-modal-content {
    animation: slideDown 0.3s ease;
}

.product-modal-content {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: max-content;
    margin: 40px auto;
    padding: 0;
    position: relative;
    animation: slideUp 0.4s ease;
    top: 15vh;
}

.product-details {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.product-details-image {
    position: relative;
    width: 100%;
}

.product-gallery-large {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 30px;
    color: rgb(255, 250, 250);
    background: transparent;
    cursor: pointer;
    border: none;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close:hover {
    transform: scale(1.2);
}

.gallery-img-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-img-large.active {
    opacity: 1;
    position: relative;
}

.gallery-dots-large {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.product-details-info {
    display: flex;
    flex-direction: column;
    padding: 25px;
}

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

.product-details-title {
    font-size: 21px;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(90deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex: 1;
}

.product-details-price {
    text-align: center;
    padding: 10px 20px;
    white-space: nowrap;
}

.product-details-description h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.product-details-features {
    list-style: none;
    margin-bottom: 20px;
    height: 180px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
}

.product-details-features::-webkit-scrollbar {
    width: 6px;
}

.product-details-features::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.product-details-features::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.product-details-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    color: var(--text-secondary);
    font-size: 13px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.product-details-features li:hover {
    background: rgba(255, 0, 98, 0.1);
    border-color: rgba(255, 0, 98, 0.3);
    transform: translateX(-3px);
}

.product-details-features i {
    color: var(--primary-color);
    font-size: 10px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 98, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-buy-large {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    margin-top: auto;
}

@media (max-width: 768px) {
    .product-modal-content {
        max-width: 95%;
        margin: 20px auto;
    }
    
    .product-gallery-large {
        height: 250px;
    }
    
    .product-details-info {
        padding: 20px;
    }
    
    .product-details-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .product-details-features {
        grid-template-columns: 1fr;
        height: 180px;
    }
}


.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 0, 98, 0.1);
}

.form-group input[readonly] {
    background: var(--dark-hover);
    cursor: not-allowed;
}

.rules {
    padding: 80px 0;
}

.rules-intro {
    margin-bottom: 60px;
}

.alert-box {
    background: rgba(255, 0, 98, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.alert-box i {
    font-size: 36px;
    color: var(--primary-color);
}

.alert-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.alert-box p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.rule-category {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon.general {
    background: linear-gradient(135deg, #ff0062 0%, #8b00ff 100%);
}

.category-icon.roleplay {
    background: linear-gradient(135deg, #00ccff 0%, #0066ff 100%);
}

.category-icon.jobs {
    background: linear-gradient(135deg, #ffaa00 0%, #ff6600 100%);
}

.category-icon.technical {
    background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
}

.category-icon i {
    font-size: 36px;
    color: white;
}

.category-header h2 {
    font-size: 36px;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.rule-item {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.rule-item:hover {
    border-color: var(--primary-color);
    transform: translateX(-5px);
}

.rule-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
}

.rule-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.rule-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.penalty {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 50px;
    color: #ffaa00;
    font-size: 14px;
    font-weight: 600;
}

.penalty.severe {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    color: #ff3333;
}

.rules-footer {
    margin-top: 60px;
}

.info-box {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-box i {
    font-size: 36px;
    color: #00ccff;
}

.info-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.info-box p {
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.contact-method:hover {
    border-color: var(--primary-color);
    transform: translateX(-5px);
}

.method-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon.discord {
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
}

.method-icon.email {
    background: linear-gradient(135deg, #ff0062 0%, #8b00ff 100%);
}

.method-icon.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.method-icon.instagram {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 100%);
}

.method-icon i {
    font-size: 28px;
    color: white;
}

.method-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.method-info p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

.method-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.method-link:hover {
    color: var(--secondary-color);
}

.support-hours {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.support-hours h3 {
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-hours h3 i {
    color: var(--primary-color);
}

.support-hours ul {
    list-style: none;
}

.support-hours ul li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.support-hours ul li:last-child {
    border-bottom: none;
}

.support-hours ul li strong {
    color: var(--text-primary);
}

.contact-form-wrapper {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-form-wrapper > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary-color);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    display: none;
}

.form-message.success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    display: block;
}

.form-message.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff3333;
    display: block;
}

@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 48px;
    }
    
    .floating-card,
    .image-frame {
        width: 100%;
        max-width: 400px;
        height: 400px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);

        flex-direction: column;
        padding: 40px;
        gap: 20px;
        transition: right 0.3s;
        border-left: 1px solid rgba(255, 0, 98, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* User Authentication Styles */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-dropdown {
    position: relative;
}

.user-info-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.user-info-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 0, 98, 0.3);
}

.user-info-trigger i.fa-chevron-down {
    font-size: 12px;
    color: var(--text-secondary);
    transition: transform 0.3s;
}

.user-dropdown:hover .user-info-trigger i.fa-chevron-down {
    transform: rotate(180deg);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    object-fit: cover;
}

.user-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 14px;
}

.dropdown-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.dropdown-item:hover {
    background: rgba(255, 0, 98, 0.1);
    color: var(--primary-color);
}

.dropdown-item.logout {
    color: #ff3333;
}

.dropdown-item.logout:hover {
    background: rgba(255, 51, 51, 0.1);
    color: #ff3333;
}

/* Cart Item Type Badge */
.item-type {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 4px;
    text-transform: uppercase;
}

.item-type.subscription {
    background: rgba(255, 0, 98, 0.15);
    color: var(--primary-color);
    border: 1px solid rgba(255, 0, 98, 0.3);
}

.item-type.one-time {
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

/* Checkout Page Styles */
.checkout-section {
    padding: 150px 0 80px;
    min-height: 100vh;
}

.checkout-header {
    text-align: center;
    margin-bottom: 60px;
}

.checkout-header h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff3385 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkout-header h1 i {
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
    margin-left: 15px;
}

.checkout-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-summary,
.checkout-payment {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 30px;
}

.checkout-summary h2,
.checkout-payment h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-summary h2 i,
.checkout-payment h2 i {
    color: var(--primary-color);
}

.order-items {
    margin-bottom: 25px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.order-item:hover {
    border-color: rgba(255, 0, 98, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.item-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.item-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.item-badge.subscription {
    background: rgba(255, 0, 98, 0.15);
    color: var(--primary-color);
    border: 1px solid rgba(255, 0, 98, 0.3);
}

.item-badge.one-time {
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.item-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
    background: rgba(255, 0, 98, 0.1);
    border: 1px solid rgba(255, 0, 98, 0.3);
    border-radius: 5px;
    font-size: 20px;
    font-weight: 700;
}

.total-amount {
    font-size: 32px;
    color: var(--primary-color);
}

.payment-info {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 15px;
}

#paypal-button-container,
#paypal-subscription-container {
    margin: 30px 0;
}

/* PayPal Button Text Color Override */
#paypal-button-container iframe,
#paypal-subscription-container iframe {
    color-scheme: dark;
}

#paypal-button-container .paypal-button,
#paypal-subscription-container .paypal-button {
    color: white !important;
}

.payment-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding: 15px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 5px;
    color: #00ff88;
    font-weight: 600;
}

.payment-secure i {
    font-size: 20px;
}

@media (max-width: 992px) {
    .checkout-content {
        grid-template-columns: 1fr;
    }
}

/* Success Page Styles */
.success-section {
    padding: 150px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-card {
    max-width: 700px;

    padding: 60px 40px;
    text-align: center;
}

.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 255, 136, 0.1) 100%);
    border: 3px solid #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(0, 255, 136, 0);
    }
}

.success-icon i {
    font-size: 60px;
    color: #00ff88;
}

.success-card h1 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-message {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.success-details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 30px;
    margin-bottom: 40px;
}

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

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

.detail-item i {
    font-size: 24px;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
}

.detail-item > div {
    flex: 1;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
}

.detail-value {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 700;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.success-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 10px;
    color: #5865F2;
    font-weight: 600;
}

.success-note i {
    font-size: 18px;
}

.btn-discord {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    background: linear-gradient(135deg, #4752C4 0%, #3C45A5 100%);
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.4);
}

/* Dashboard Styles */
.dashboard-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, rgba(255, 0, 98, 0.1) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-bottom: 1px solid rgba(255, 0, 98, 0.2);
    position: relative;
    overflow: hidden;
}

.dashboard-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 98, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.dashboard-welcome {
    text-align: center;
    position: relative;
    z-index: 1;
}

.dashboard-welcome h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff3385 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.dashboard-welcome h1 i {
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
    filter: drop-shadow(0 0 20px rgba(255, 0, 98, 0.6));
}

.dashboard-welcome p {
    font-size: 20px;
    color: var(--text-secondary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .server-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .nav-auth {
        flex-direction: column;
        gap: 10px;
    }
    
    .user-info {
        padding: 6px 12px;
    }
    
    .user-avatar {
        width: 32px;
        height: 32px;
    }
    
    .user-name {
        font-size: 12px;
    }
    
    .dashboard-welcome h1 {
        font-size: 32px;
        flex-direction: column;
        gap: 10px;
    }
    
    .dashboard-welcome p {
        font-size: 16px;
    }
}

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff3385);
    z-index: 10000;
    transition: width 0.1s ease-out;
}

/* ===== Navbar Scroll Effect ===== */
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-logo {
    height: 40px;
    transition: height 0.3s ease;
}

/* ===== Scroll Animations ===== */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade-left.active {
    opacity: 1;
    transform: translateX(0);
}

.scroll-fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* ===== Parallax Effect ===== */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

/* ===== Scroll to Top Button ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(255, 0, 98, 0.4);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 0, 98, 0.6);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

/* ===== Smooth Reveal Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.animate-fade-up {
    animation-name: fadeInUp;
}

.animate-fade-left {
    animation-name: fadeInLeft;
}

.animate-fade-right {
    animation-name: fadeInRight;
}

/* ===== Language Switcher Button ===== */
.language-switcher {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 16px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 98, 0.2), transparent);
    transition: left 0.5s;
}

.lang-btn:hover::before {
    left: 100%;
}

.lang-btn:hover {
    background: rgba(255, 0, 98, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 98, 0.3);
}

.lang-btn i {
    font-size: 16px;
}

.lang-btn .lang-text {
    font-family: 'Cairo', sans-serif;
}

/* Language flag icons */
.lang-btn .flag-icon {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    object-fit: cover;
}

/* RTL/LTR Support */
body[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

body[dir="ltr"] {
    direction: ltr;
    text-align: left;
}

body[dir="ltr"] .nav-menu {
    flex-direction: row;
}

body[dir="ltr"] .hero-buttons {
    flex-direction: row;
}

/* Responsive Language Switcher */
@media (max-width: 768px) {
    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .lang-btn i {
        font-size: 14px;
    }
}
