/* Global Styles */
:root {
    --primary: #ff2d2d;
    --primary-dark: #d11a1a;
    --dark: #0f0f15;
    --dark-light: #1a1a24;
    --light: #f8f8f8;
    --gray: #8a8a9b;
    --gray-dark: #4a4a5a;
    }
    
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    body {
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    }
    
    .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    }
    
    section {
    padding: 80px 0;
    }
    
    .btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    }
    
    .primary-btn {
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
    }
    
    .primary-btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    }
    
    .secondary-btn {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    }
    
    .secondary-btn:hover {
    background-color: rgba(255, 45, 45, 0.1);
    transform: translateY(-2px);
    }
    
    .section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    }
    
    .section-title span {
    color: var(--primary);
    }
    
    /* Loading Screen */
    .loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000000000000;
    animation: fadeOut 2.5s forwards;
    }
    
    @keyframes fadeOut {
    0% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
    }
    
    .logo-container {
    text-align: center;
    }
    
    .logo-spin {
    width: 100px;
    height: auto;
    animation: spin 2s linear infinite;
    }
    
    @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
    }
    
    .slogan {
    margin-top: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #ff0000; /* Red text */
    animation: fadeIn 2s ease-in-out;
    }
    
    @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
    }
    
    /* Header Styles */
    .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(15, 15, 21, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: all 0.3s ease;
    }
    
    .header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
    
    .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light);
    text-decoration: none;
    }
    
    .logo span {
    color: var(--primary);
    }
    
    .navbar {
    display: flex;
    align-items: center;
    }
    
    .nav-links {
    display: flex;
    list-style: none;
    margin-right: 30px;
    }
    
    .nav-links li {
    margin-left: 30px;
    position: relative;
    }
    
    .nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    }
    
    .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
    }
    
    .nav-links a:hover::after,
    .nav-links a.active::after {
    width: 100%;
    }
    
    .nav-links a.active {
    color: var(--primary);
    }
    
    .nav-actions {
    display: flex;
    align-items: center;
    }
    
    .discord-btn {
    color: var(--light);
    font-size: 1.2rem;
    margin-right: 20px;
    transition: all 0.3s ease;
    }
    
    .discord-btn:hover {
    color: var(--primary);
    transform: translateY(-2px);
    }
    
    .hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    }
    
    .hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: var(--light);
    transition: all 0.3s ease;
    }
    
    .hamburger.active .bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
    opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
    }
    
    /* Hero Section */
    .hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    padding-top: 150px;
    position: relative;
    overflow: hidden;
    }
    
    .hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    }
    
    .hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
    }
    
    .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    }
    
    .hero-content h1 span {
    color: var(--primary);
    }
    
    .hero-content .subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.6;
    }
    
    .hero-image {
    flex: 1;
    min-width: 300px;
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    
    .hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    }
    
    .hero-image:hover img {
    transform: scale(1.05);
    }
    
    /* Divider */
    .divider {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 100px;
    }
    
    .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%231a1a24" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%231a1a24" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23ff2d2d"/></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    }
    
    /* Features Section */
    .features {
    background-color: var(--dark-light);
    }
    
    .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    }
    
    .feature-card {
    background-color: var(--dark);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    }
    
    .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-bottom-color: var(--primary);
    }
    
    .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.1) 0%, rgba(255, 45, 45, 0.3) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    }
    
    .feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--light);
    }
    
    .feature-card p {
    color: var(--gray);
    line-height: 1.6;
    }
    
    /* Why Choose Us Section */
    .why-choose-us {
    background-color: var(--dark);
    }
    
    .reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    }
    
    .reason-card {
    background-color: var(--dark-light);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    }
    
    .reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--primary);
    transition: height 0.3s ease;
    }
    
    .reason-card:hover::before {
    height: 100%;
    }
    
    .reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .reason-number {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 20px;
    right: 20px;
    }
    
    .reason-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--light);
    position: relative;
    }
    
    .reason-card p {
    color: var(--gray);
    line-height: 1.6;
    }
    
    /* Community Section */
    .community {
    background-color: var(--dark-light);
    }
    
    .community .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    }
    
    .community-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
    }
    
    .community-content .btn {
    margin-top: 20px;
    }
    
    .community-image {
    flex: 1;
    min-width: 300px;
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    
    .community-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    }
    
    .community-image:hover img {
    transform: scale(1.05);
    }
    
    /* Footer */
    .footer {
    background-color: var(--dark);
    padding: 80px 0 0;
    }
    
    .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    }
    
    .footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--light);
    position: relative;
    padding-bottom: 10px;
    }
    
    .footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    }
    
    .footer-col ul {
    list-style: none;
    }
    
    .footer-col ul li {
    margin-bottom: 10px;
    }
    
    .footer-col ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    }
    
    .footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
    }
    
    .social-links {
    display: flex;
    margin-top: 20px;
    }
    
    .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark-light);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
    }
    
    .social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    }
    
    .footer-bottom {
    border-top: 1px solid var(--gray-dark);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    }
    
    .footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
    }
    
    .legal-links {
    display: flex;
    }
    
    .legal-links a {
    color: var(--gray);
    font-size: 0.9rem;
    text-decoration: none;
    margin-left: 20px;
    transition: all 0.3s ease;
    }
    
    .legal-links a:hover {
    color: var(--primary);
    }
    
    /* Animations */
    .slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease forwards;
    }
    
    @keyframes slideUp {
    to {
    opacity: 1;
    transform: translateY(0);
    }
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
    .hero-content h1 {
    font-size: 2.8rem;
    }
    
    .section-title {
    font-size: 2.2rem;
    }
    }
    
    @media (max-width: 768px) {
    .hamburger {
    display: flex;
    }
    
    .navbar {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    z-index: 999;
    }
    
    .navbar.active {
    left: 0;
    }
    
    .nav-links {
    flex-direction: column;
    align-items: center;
    margin-right: 0;
    margin-bottom: 30px;
    }
    
    .nav-links li {
    margin: 15px 0;
    }
    
    .hero {
    padding-top: 120px;
    }
    
    .hero-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 40px;
    }
    
    .hero-content .btn {
    margin: 0 auto;
    }
    
    .community-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 40px;
    }
    
    .community-content .btn {
    margin: 20px auto 0;
    }
    
    .footer-bottom {
    flex-direction: column;
    text-align: center;
    }
    
    .legal-links {
    margin-top: 15px;
    }
    
    .legal-links a {
    margin: 0 10px;
    }
    }
    
    @media (max-width: 576px) {
    .hero-content h1 {
    font-size: 2.2rem;
    }
    
    .section-title {
    font-size: 1.8rem;
    }
    
    .btn {
    padding: 10px 20px;
    }
    
    section {
    padding: 60px 0;
    }
    }
    
    .ripple {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 0, 0, 0.5);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-effect 0.6s linear;
    pointer-events: none;
    }
    
    @keyframes ripple-effect {
    to {
    transform: scale(3);
    opacity: 0;
    }
    }


    /* scroll */

    ::-webkit-scrollbar {
        width: 12px;
        height: 12px;
      }
      
      ::-webkit-scrollbar-track {
        background: none;
      }
      
      ::-webkit-scrollbar-thumb {
        background: linear-gradient(to bottom, #ff0000, #ffffff);
        border-radius: 10px;
      }
      
      ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(to bottom, #ff4d4d, #ffffff);
      }
      