/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700&family=Cairo:wght@300;400;500;700&family=Teko:wght@300;400;500;600;700&display=swap');

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

/* Root Variables */
:root {
    --icy-blue: #E1F5FE;
    --metallic-gray: #607D8B;
    --snowy-white: #ffffffee;
    --interactive-blue: #b8e2f5;
    --dark-blue: #01579B;
    --light-gray: #f0f4f8;
    --text-dark: #263238;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.2);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    background: url('https://i.postimg.cc/MZdbdS29/Project.webp') center/cover no-repeat fixed;
    color: var(--snowy-white);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Overlay for better text readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 40, 0.3);
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 245, 254, 0.8) 0%, rgba(179, 229, 252, 0.7) 50%, rgba(129, 212, 250, 0.8) 100%);
    z-index: -1;
}

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

/* Responsive Container */
@media (max-width: 1280px) {
    .container {
        max-width: 100%;
        padding: 0 16px;
    }
}

/* Gift Codes Banner */
.gift-codes-banner {
    margin: 30px 0;
    text-align: center;
}

.banner-container {
    position: relative;
    display: inline-block;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.banner-link {
    position: relative;
    display: block;
    text-decoration: none;
}

.banner-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.banner-link:hover .banner-overlay {
    opacity: 1;
}

.banner-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.banner-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.banner-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.banner-cta {
    display: inline-block;
    background: var(--interactive-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Discord Store Section */
.discord-store {
    margin: 30px 0;
}

.discord-store-card {
    background: linear-gradient(135deg, #7289da 0%, #5b6fad 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.discord-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.discord-header i {
    font-size: 2.5rem;
}

.discord-header h2 {
    font-size: 1.8rem;
    margin: 0;
}

.discord-store-card p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.discord-btn {
    display: inline-block;
    background: white;
    color: #7289da;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #7289da;
    text-decoration: none;
}

.discord-btn i {
    margin-left: 10px;
}

/* Store Products Section */
.store-products {
    margin: 40px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--snowy-white);
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.product-card {
    background: rgba(1, 87, 155, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.product-content {
    padding: 20px;
    text-align: center;
}

.product-content h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--interactive-blue);
    margin-bottom: 20px;
}

.product-btn {
    display: inline-block;
    background: var(--interactive-blue);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background: #e68900;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Header Styles */
.header {
    background: #2C3E50;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--interactive-blue);
}

.navbar {
    padding: 1rem 0;
}

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

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

.nav-logo img {
    height: 50px;
    width: auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px;
    border-radius: 10px;
}

.nav-logo h2 {
    color: var(--snowy-white);
    font-family: 'Teko', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.nav-logo i {
    color: var(--interactive-blue);
    margin-left: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    background: #2C3E50;
    padding: 10px 15px;
    border-radius: 10px;
}

.nav-link {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    background: var(--interactive-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--metallic-gray);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* Page Title */
.page-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--snowy-white);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Teko', sans-serif;
    font-weight: 600;
    background: rgba(1, 87, 155, 0.8);
    padding: 20px 40px;
    border-radius: 15px;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
}

/* Section Title */
.section-title {
    font-size: 2rem;
    color: var(--snowy-white);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    font-family: 'Teko', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--interactive-blue);
    border-radius: 2px;
}

/* Content Cards */
.content-card {
    background: rgba(1, 87, 155, 0.9);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--snowy-white);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-heavy);
}

.featured-card {
    border: 2px solid var(--interactive-blue);
    background: linear-gradient(135deg, var(--snowy-white) 0%, rgba(255, 152, 0, 0.05) 100%);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(1, 87, 155, 0.9) 0%, rgba(96, 125, 139, 0.8) 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1551524164-6cf96ac93bb4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.2;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.btn-primary:hover {
    background: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.btn-secondary {
    background: var(--metallic-gray);
    color: white;
}

.btn-secondary:hover {
    background: #546e7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 125, 139, 0.4);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-youtube {
    background: #ff0000;
    color: white;
}

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

.btn-discord {
    background: #5865f2;
    color: white;
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
}

.btn-telegram {
    background: #0088cc;
    color: white;
}

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

.btn-download {
    background: #4CAF50;
    color: white;
}

.btn-download:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Navigation Cards */
.nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.nav-card {
    background: var(--snowy-white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.nav-card:hover {
    transform: translateY(-10px);
    border-color: var(--interactive-blue);
    box-shadow: 0 15px 35px var(--shadow-heavy);
}

.nav-card-icon {
    font-size: 3rem;
    color: var(--interactive-blue);
    margin-bottom: 1rem;
}

.nav-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.nav-card p {
    color: var(--metallic-gray);
    line-height: 1.5;
}

/* Quick Navigation */
.quick-nav {
    margin: 3rem 0;
}

/* YouTube Section */
.youtube-section {
    background: var(--snowy-white);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.youtube-container {
    margin-top: 2rem;
}

/* Heroes Preview */
.featured-heroes {
    margin: 3rem 0;
}

.heroes-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.hero-card {
    background: var(--snowy-white);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-card:hover {
    transform: translateY(-5px);
    border-color: var(--interactive-blue);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.hero-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.hero-card h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

/* Grid Systems */
.guides-grid,
.tips-grid,
.features-grid,
.channels-grid,
.telegram-grid,
.benefits-grid,
.offers-grid,
.payment-grid,
.reviews-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

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

.tips-grid,
.benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

.channels-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

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

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

.payment-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Guide Items */
.guide-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: all 0.3s ease;
}

.guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.guide-icon {
    font-size: 2.5rem;
    color: var(--interactive-blue);
    margin-bottom: 1rem;
}

.guide-item h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.guide-links {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Tip Items */
.tip-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: all 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

.tip-item i {
    font-size: 2rem;
    color: var(--interactive-blue);
    margin-bottom: 1rem;
    display: block;
}

.tip-item h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

/* Feature Items */
.feature-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--interactive-blue);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--interactive-blue);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

/* Simulator Specific Styles */
.simulator-banner {
    margin-bottom: 3rem;
}

.banner-image {
    text-align: center;
    margin-bottom: 2rem;
}

.responsive-gif {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-medium);
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tool-icon {
    font-size: 3rem;
    color: var(--interactive-blue);
}

.tool-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.feature i {
    font-size: 2rem;
    color: var(--interactive-blue);
    margin-bottom: 0.5rem;
    display: block;
}

.tool-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Channel Cards */
.channel-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.youtube-card:hover {
    border-color: #ff0000;
}

.discord-card:hover {
    border-color: #5865f2;
}

.channel-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.channel-icon {
    font-size: 2.5rem;
}

.youtube-card .channel-icon {
    color: #ff0000;
}

.discord-card .channel-icon {
    color: #5865f2;
}

.channel-features {
    margin: 1.5rem 0;
}

.channel-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: transparent;
}

.channel-features .feature i {
    font-size: 1rem;
    margin-bottom: 0;
}

.channel-stats {
    display: flex;
    justify-content: space-around;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-blue);
}

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

/* Telegram Cards */
.telegram-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.telegram-card:hover {
    transform: translateY(-5px);
    border-color: #0088cc;
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.telegram-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #0088cc;
}

.telegram-card .card-header i {
    font-size: 2rem;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
}

.card-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--metallic-gray);
}

/* Store Specific Styles */
.store-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.store-logo {
    font-size: 3rem;
    color: var(--interactive-blue);
}

.offer-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: var(--interactive-blue);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.offer-card.premium {
    border: 2px solid var(--interactive-blue);
    background: linear-gradient(135deg, white 0%, rgba(255, 152, 0, 0.05) 100%);
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--interactive-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.offer-icon {
    font-size: 3rem;
    color: var(--interactive-blue);
    margin-bottom: 1rem;
}

.offer-price {
    margin: 1rem 0;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-blue);
}

.original-price {
    font-size: 1.2rem;
    color: var(--metallic-gray);
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.offer-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: right;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: rgba(225, 245, 254, 0.3);
    border-radius: 5px;
}

.offer-features i {
    color: var(--interactive-blue);
}

/* Payment Grid */
.payment-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 3px 10px var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-item:hover {
    transform: translateY(-3px);
    border-color: var(--interactive-blue);
    box-shadow: 0 6px 15px var(--shadow-medium);
}

.payment-item i {
    font-size: 2rem;
    color: var(--interactive-blue);
    margin-bottom: 0.5rem;
    display: block;
}

/* Review Items */
.review-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: all 0.3s ease;
}

.review-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

.review-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.review-stars i {
    color: #ffd700;
}

.review-item p {
    font-style: italic;
    margin-bottom: 1rem;
    text-align: center;
}

.reviewer {
    text-align: center;
    font-weight: bold;
    color: var(--dark-blue);
}

/* Support Methods */
.support-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.support-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow-light);
    transition: all 0.3s ease;
}

.support-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px var(--shadow-medium);
}

.support-method i {
    font-size: 2rem;
    color: var(--interactive-blue);
}

/* Steps Container */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

.step-number {
    background: var(--interactive-blue);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

/* Info Lists */
.info-list {
    list-style: none;
    margin-top: 1rem;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: rgba(225, 245, 254, 0.3);
    border-radius: 5px;
}

.info-list i {
    color: var(--interactive-blue);
}

/* Rules List */
.rules-list {
    margin-top: 1.5rem;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.rule-item i {
    color: var(--interactive-blue);
    font-size: 1.2rem;
}

/* Benefit Items */
.benefit-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--interactive-blue);
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

/* CTA Styles */
.cta-card {
    background: linear-gradient(135deg, var(--interactive-blue) 0%, var(--dark-blue) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-buttons .btn {
    background: white;
    color: var(--interactive-blue);
}

.cta-buttons .btn:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: rgba(38, 50, 56, 0.95);
    color: white;
    margin-top: 4rem;
    backdrop-filter: blur(10px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--interactive-blue);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
}

.social-link i {
    font-size: 1.2rem;
}

.social-link.youtube {
    background: #ff0000;
}

.social-link.youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.social-link.telegram {
    background: #0088cc;
}

.social-link.telegram:hover {
    background: #006699;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
}

.social-link.discord {
    background: #7289da;
}

.social-link.discord:hover {
    background: #5b6fad;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(114, 137, 218, 0.4);
}

.social-link span {
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: #34495E;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        gap: 0;
    }

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

    .nav-menu .nav-item {
        margin: 0.5rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Typography */
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }

    /* Layout */
    .hero-section {
        padding: 2rem 1rem;
        min-height: 400px;
        max-height: 550px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Calculator Tools Styles */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tool-card {
    background: rgba(1, 87, 155, 0.9);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--snowy-white);
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.tool-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    display: block;
}

.tool-card h3 {
    color: var(--snowy-white);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.tool-card p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.tool-btn {
    display: inline-block;
    background: var(--interactive-blue);
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tool-btn:hover {
    background: #FFFFFF;
    color: var(--dark-blue);
    border-color: var(--interactive-blue);
    transform: translateY(-2px);
}

.tool-btn i {
    margin-left: 8px;
}

    .content-card {
        padding: 1.5rem;
    }

    .nav-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .nav-card {
        padding: 1.5rem;
    }

    .heroes-preview {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    /* Grid adjustments */
    .guides-grid,
    .features-grid,
    .channels-grid,
    .telegram-grid,
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tips-grid,
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

/* Video Thumbnail Styles */
.video-thumbnail {
    position: relative;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .play-overlay {
    background: var(--interactive-blue);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Telegram Styled Code Section */
.telegram-codes {
    background: linear-gradient(135deg, #0088CC 0%, #00A8E6 100%);
    border-radius: 15px;
    color: white;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.3);
}

.telegram-codes h2 {
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.telegram-codes .btn-primary {
    background: white;
    color: #0088CC;
    border: none;
    font-weight: bold;
}

.telegram-codes .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Social Links Styling */
.social-links a[href*="youtube"] {
    background: #FF0000;
}

.social-links a[href*="youtube"]:hover {
    background: #CC0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.social-links a[href*="telegram"], .social-links a[href*="t.me"] {
    background: #0088CC;
}

.social-links a[href*="telegram"]:hover, .social-links a[href*="t.me"]:hover {
    background: #0066AA;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
}

.social-links a[href*="discord"] {
    background: #5865F2;
}

.social-links a[href*="discord"]:hover {
    background: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

/* Payment Card Styling */
.payment-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 3px 10px var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-card:hover {
    transform: translateY(-5px);
    border-color: var(--interactive-blue);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .tool-header {
        flex-direction: column;
        text-align: center;
    }

    .channel-header {
        flex-direction: column;
        text-align: center;
    }

    .store-header {
        flex-direction: column;
        text-align: center;
    }

    .support-methods {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .content-card {
        padding: 1rem;
    }

    .nav-card {
        padding: 1rem;
    }

    .hero-section {
        padding: 1.5rem 0.5rem;
        margin: 1rem 0;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .tool-features {
        grid-template-columns: 1fr;
    }

    .channel-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .offer-price .price {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 0;
    }
}

/* Animation Classes */
@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);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--interactive-blue);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
*:focus {
    outline: 2px solid var(--interactive-blue);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .hamburger,
    .btn {
        display: none;
    }

    .main-content {
        padding: 0;
    }

    .content-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
/* Dark Cards Theme - Added for better readability */
.content-card,
.tool-card,
.telegram-card,
.channel-card,
.offer-card,
.payment-card,
.review-item,
.benefit-item,
.rule-item,
.guide-item,
.tip-item,
.feature-card,
.nav-card,
.hero-card,
.step-item,
.support-method,
.video-thumbnail,
.product-card,
.discord-store-card,
.telegram-codes,
.white-box {
    background: rgba(38, 50, 56, 0.95) !important;
    color: #E1F5FE !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Text color adjustments for dark cards */
.content-card h3,
.content-card h4,
.content-card p,
.tool-card h3,
.tool-card p,
.telegram-card h3,
.telegram-card p,
.channel-card h3,
.channel-card p,
.offer-card h3,
.offer-card p,
.review-item p,
.benefit-item h4,
.benefit-item p,
.rule-item p,
.guide-item h3,
.guide-item p,
.tip-item h4,
.tip-item p,
.feature-card h3,
.feature-card p,
.nav-card h3,
.nav-card p,
.hero-card h4,
.hero-card p,
.step-content h4,
.step-content p,
.support-method p,
.product-content h3,
.product-content p,
.discord-store-card h2,
.discord-store-card p {
    color: #E1F5FE !important;
}

/* Special cards with different backgrounds */
.discord-store-card {
    background: linear-gradient(135deg, #7289da 0%, #5b6fad 100%) !important;
}

.telegram-codes {
    background: linear-gradient(135deg, #0088CC 0%, #00A8E6 100%) !important;
}

/* Price and special text colors */
.product-price,
.price,
.offer-price .price {
    color: var(--interactive-blue) !important;
}

.original-price {
    color: rgba(225, 245, 254, 0.7) !important;
}

/* Lists and features in cards */
.offer-features li,
.info-list li {
    background: rgba(0, 0, 0, 0.2) !important;
    color: #E1F5FE !important;
}

/* Stats in channel cards */
.channel-stats {
    background: rgba(0, 0, 0, 0.3) !important;
}

.stat-number {
    color: var(--interactive-blue) !important;
}

.stat-label {
    color: rgba(225, 245, 254, 0.7) !important;
}

/* Form elements in cards (if any) */
input[type="text"],
input[type="number"],
input[type="email"],
select,
textarea {
    background: rgba(0, 0, 0, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #E1F5FE !important;
}

/* Buttons in cards - keep original styles but adjust text */
.btn,
.product-btn,
.tool-btn,
.discord-btn {
    color: var(--dark-blue) !important;
}

/* Hover effects for better interaction */
.content-card:hover,
.tool-card:hover,
.telegram-card:hover,
.channel-card:hover,
.offer-card:hover,
.payment-card:hover,
.review-item:hover,
.benefit-item:hover,
.rule-item:hover,
.guide-item:hover,
.tip-item:hover,
.feature-card:hover,
.nav-card:hover,
.hero-card:hover,
.step-item:hover,
.support-method:hover,
.video-thumbnail:hover,
.product-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
    border-color: var(--interactive-blue) !important;
}

/* Mobile adjustments for better visibility */
@media (max-width: 768px) {
    .content-card,
    .tool-card,
    .telegram-card,
    .channel-card,
    .offer-card,
    .payment-card,
    .review-item,
    .benefit-item,
    .rule-item,
    .guide-item,
    .tip-item,
    .feature-card,
    .nav-card,
    .hero-card,
    .step-item,
    .support-method,
    .video-thumbnail,
    .product-card {
        padding: 1.2rem !important;
    }
}/* صورة الغلاف الجديدة */
.hero-cover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.imgur.com/nmHO5DN.jpg') center/cover no-repeat;
    z-index: -1;
    opacity: 0.7;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: none; /* إزالة الخلفية القديمة */
}

/* أيقونات البطاقات */
.nav-card-icon {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.nav-card-icon i {
    font-size: 1.8rem;
    color: var(--interactive-blue);
    transition: transform 0.3s ease;
}

.nav-card:hover .nav-card-icon i {
    transform: scale(1.1);
}

/* أيقونات مخصصة */
.fa-sword:before {
    content: "⚔️";
    font-style: normal;
}

.fa-bow-arrow:before {
    content: "🏹";
    font-style: normal;
}

.fa-spear:before {
    content: "🔱";
    font-style: normal;
}

.fa-shield-virus:before {
    content: "🛡️";
    font-style: normal;
}

/* الحفاظ على أحجام البطاقات كما هي */
.nav-card {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* تحسينات للعناوين */
.hero-content {
    position: relative;
    z-index: 2;
}

/* تحسينات للاستجابة */
@media (max-width: 768px) {
    .nav-card-icon {
        gap: 8px;
    }
    
    .nav-card-icon i {
        font-size: 1.5rem;
    }
}/* صورة الغلاف الجديدة */
.hero-cover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.imgur.com/nmHO5DN.jpg') center/cover no-repeat;
    z-index: -1;
    opacity: 1; /* هذه القيمة صحيحة */
    filter: none; /* هذا هو التعديل الرئيسي */
}
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: none; /* إزالة الخلفية القديمة */
}

/* أيقونات البطاقات */
.nav-card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    height: 60px; /* ارتفاع ثابت للأيقونات */
}

.nav-card-icon i, .nav-card-icon .icon-emoji {
    font-size: 1.8rem;
    color: var(--interactive-blue);
    transition: transform 0.3s ease;
}

.nav-card:hover .nav-card-icon i, .nav-card:hover .nav-card-icon .icon-emoji {
    transform: scale(1.1);
}

/* أيقونات مخصصة */
.fa-sword:before {
    content: "⚔️";
    font-style: normal;
}

.fa-bow-arrow:before {
    content: "🏹";
    font-style: normal;
}

.fa-spear:before {
    content: "🔱";
    font-style: normal;
}

.fa-shield-virus:before {
    content: "🛡️";
    font-style: normal;
}

/* الرموز التعبيرية */
.icon-emoji {
    font-style: normal;
    font-size: 1.8rem;
    display: inline-block;
}

/* الحفاظ على أحجام البطاقات كما هي */
.nav-card {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* تحسينات للعناوين */
.hero-content {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7); /* تحسين وضوح النص */
}

/* تحسينات للاستجابة */
@media (max-width: 768px) {
    .nav-card-icon {
        gap: 8px;
    }
    
    .nav-card-icon i, .nav-card-icon .icon-emoji {
        font-size: 1.5rem;
    }
}
/* صورة الغلاف الجديدة - مؤثرة فقط على قسم البطل */
.hero-section {
  position: relative;
  overflow: hidden;
  background: none !important;
}

.hero-cover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://i.imgur.com/nmHO5DN.jpg') center/cover no-repeat !important;
  z-index: -1;
  opacity: 1 !important;
  filter: brightness(1.05) contrast(1.05);
  image-rendering: -webkit-optimize-contrast;
}

.hero-section::before {
  content: none !important;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* استعادة خلفيات الأقسام الأخرى */
body::before, 
body::after {
  /* بدلاً من display: none */
  background: rgba(0, 20, 40, 0.3); /* استعادة القيم الأصلية */
}

/* تأكد من ظهور العناصر الأخرى بشكل صحيح */
.container, .content-card, .nav-card {
  position: relative;
  z-index: 10; /* أعلى من خلفية body */
}
/* خلفية مخصصة لقسم متجر الديسكورد */
.discord-store-section {
    background-image: url('https://i.imgur.com/F2dXvh0.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 20px;
    border-radius: 12px;
    color: white;
    text-align: center;
}

/* أيقونات تواصل عائمة */
.floating-social-icons {
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px;
    border-radius: 8px;
}
/* خلفية متجر ديسكورد بصورة */
.discord-store-card {
    background: url('https://i.imgur.com/F2dXvh0.jpeg') center center / cover no-repeat;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
body {
  max-width: 100%;
  overflow-x: hidden;
}

.hero-section {
  background-attachment: scroll !important;
}

html, body {
  overflow-x: hidden;
}
/* Hero Tier List Custom Styles */
.tier-banner-image {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.tier-final-image {
    width: 100%;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.content-card h2, .content-card h3 {
    color: var(--interactive-blue);
    margin-bottom: 15px;
}

.content-card ul {
    list-style-type: none;
    padding: 0;
}

.content-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-card ul li:last-child {
    border-bottom: none;
}

/* تحسينات للعرض على الجوال */
@media (max-width: 768px) {
    .tier-banner-image, .tier-final-image {
        border-radius: 10px;
    }
    
    .content-card h2 {
        font-size: 1.5rem;
    }
    
    .content-card ul li {
        font-size: 0.9rem;
    }
}

/* تنسيقات إضافية للبطاقات */
.content-card {
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--interactive-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 1;
}

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

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* تنسيقات خاصة بصفحة تصنيف الأبطال */
.compare-page .page-title {
    background: linear-gradient(135deg, rgba(1, 87, 155, 0.8) 0%, rgba(96, 125, 139, 0.8) 100%);
    padding: 20px 40px;
    border-radius: 15px;
    margin-bottom: 1rem;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: block; /* إرجاعها إلى الوضع الطبيعي */
}

.compare-page .tier-banner-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 1rem 0 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: block;
}