/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gradient Definitions */
.gradient-bg {
    background: linear-gradient(to bottom, #ff0000 0%, #8b0000 50%, #4b0000 100%);
}

.gradient-text {
    background: linear-gradient(to bottom, #ff0000 0%, #8b0000 50%, #4b0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
}

.logo-text::before {
    content: "NIM";
    color: #ff0000;
}

.logo-text::after {
    content: "ORA";
    color: #ffffff;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff0000;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to bottom, #ff0000 0%, #8b0000 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-auth {
    display: flex;
    gap: 15px;
}

.btn-outline {
    padding: 12px 28px;
     
    background: linear-gradient(to bottom, #ff0000 0%, #8b0000 50%, #4b0000 100%);
    background-clip: padding-box;
    border-image: linear-gradient(to bottom, #ff0000 0%, #8b0000 50%, #4b0000 100%) 1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #0a0a0a;
    border-radius: 28px;
    z-index: -1;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(to bottom, #ff1e50 0%, #ff0000 50%, #8b0000 100%);
}

.btn-outline:hover::before {
    background: rgba(10, 10, 10, 0.9);
}

.btn-primary {
    padding: 12px 28px;
    background: linear-gradient(to bottom, #ff0000 0%, #8b0000 50%, #4b0000 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(to bottom, #ff1e50 0%, #ff0000 50%, #8b0000 100%);
}

.btn-primary:hover::before {
    left: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(to bottom, #ff0000 0%, #8b0000 100%);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7) 0%, rgba(220, 20, 60, 0.15) 25%, rgba(139, 0, 0, 0.2) 50%, rgba(75, 0, 0, 0.15) 100%);
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.brand-name {
    font-size: 5rem;
    background: linear-gradient(to bottom, #ff0000 0%, #8b0000 50%, #4b0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-hero-primary {
    padding: 18px 40px;
    background: linear-gradient(to bottom, #ff0000 0%, #8b0000 50%, #4b0000 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(75, 0, 0, 0.3);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-5px) scale(1.08);
    background: linear-gradient(to bottom, #ff1e50 0%, #ff0000 50%, #8b0000 100%);
    border-color: rgba(139, 0, 0, 0.6);
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-secondary {
    padding: 18px 40px;
    background: rgba(220, 20, 60, 0.1);
    backdrop-filter: blur(15px);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid rgba(139, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(to bottom, rgba(220, 20, 60, 0.3) 0%, rgba(139, 0, 0, 0.3) 100%);
    transition: width 0.4s ease;
}

.btn-hero-secondary:hover {
    transform: translateY(-5px) scale(1.08);
    background: rgba(139, 0, 0, 0.2);
    border-color: rgba(75, 0, 0, 0.7);
    color: #ffffff;
}

.btn-hero-secondary:hover::before {
    width: 100%;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(to bottom, #ff0000 0%, #8b0000 50%, #4b0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    margin-top: 5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid #ff0000;
    border-bottom: 2px solid #ff0000;
    transform: rotate(45deg);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(to bottom, #ff0000 0%, #8b0000 50%, #4b0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(220, 20, 60, 0.02) 0%, rgba(139, 0, 0, 0.02) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #ff0000 0%, #8b0000 50%, #4b0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.8;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(220, 20, 60, 0.1);
    border-color: rgba(220, 20, 60, 0.3);
}

.feature-item i {
    background: linear-gradient(to bottom, #ff0000 0%, #8b0000 50%, #4b0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(220, 20, 60, 0.3) 0%, rgba(139, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff0000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Games Section */
.games {
    padding: 100px 0;
    background: #050505;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: rgba(220, 20, 60, 0.3);
}

.game-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(220, 20, 60, 0.8) 0%, rgba(139, 0, 0, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-info {
    text-align: center;
    padding: 20px;
}

.game-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.game-info p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-game {
    padding: 12px 30px;
    background: linear-gradient(to bottom, rgba(220, 20, 60, 0.9) 0%, rgba(139, 0, 0, 0.9) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(75, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.btn-game::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-game:hover {
    background: linear-gradient(to bottom, rgba(255, 30, 80, 1) 0%, rgba(220, 20, 60, 1) 100%);
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(75, 0, 0, 0.8);
}

.btn-game:hover::before {
    left: 100%;
}

/* VIP Section */
.vip {
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(220, 20, 60, 0.02) 0%, rgba(139, 0, 0, 0.02) 100%);
}

.vip-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vip-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
}

.vip-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(220, 20, 60, 0.3);
}

.vip-card.featured {
    border: 2px solid #ff0000;
    transform: scale(1.05);
}

.vip-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, #ff0000 0%, #8b0000 100%);
    color: #ffffff;
    padding: 5px 20px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.vip-icon {
    font-size: 3rem;
    background: linear-gradient(to bottom, #ff0000 0%, #8b0000 50%, #4b0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.vip-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.vip-card p {
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-vip {
    padding: 14px 35px;
    background: linear-gradient(to bottom, #ff0000 0%, #8b0000 50%, #4b0000 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(139, 0, 0, 0.3);
}

.btn-vip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-vip:hover {
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(to bottom, #ff1e50 0%, #ff0000 50%, #8b0000 100%);
    border-color: rgba(75, 0, 0, 0.6);
}

.btn-vip:hover::before {
    left: 100%;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #050505;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #ff0000 0%, #8b0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(220, 20, 60, 0.1);
    border-color: rgba(220, 20, 60, 0.3);
    transform: translateX(10px);
}

.contact-item i {
    color: #ff0000;
    font-size: 1.2rem;
    margin-top: 2px;
}

.contact-item strong {
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    color: #cccccc;
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff0000;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #000000;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo .logo-text {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.footer-logo .logo-text::before {
    content: "NIM";
    color: #ff0000;
}

.footer-logo .logo-text::after {
    content: "ORA";
    color: #ffffff;
}

.footer-logo p {
    color: #cccccc;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #ff0000;
    transform: translateX(5px);
}

.footer-social h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: linear-gradient(to bottom, #ff0000 0%, #8b0000 50%, #4b0000 100%);
    transform: translateY(-3px) scale(1.1);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #999999;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.9rem;
    color: #666666;
}

/* Enhanced Button Styles */
.btn-primary, .btn-hero-primary, .btn-vip, .btn-game {
    position: relative;
    overflow: hidden;
}

.btn-primary::after, .btn-hero-primary::after, .btn-vip::after, .btn-game::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    border-radius: 50%;
}

.btn-primary:hover::after, .btn-hero-primary:hover::after, .btn-vip:hover::after, .btn-game:hover::after {
    width: 300px;
    height: 300px;
}

/* Red Color Enhancements */
.red-text {
    color: #ff0000;
}

/* Enhanced Hover Effects */
.game-card:hover {
    transform: translateY(-15px) rotateY(5deg);
    border-color: rgba(139, 0, 0, 0.5);
}

.vip-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: linear-gradient(to bottom, rgba(220, 20, 60, 0.1) 0%, rgba(139, 0, 0, 0.05) 100%);
    border-color: rgba(139, 0, 0, 0.4);
}

/* Pulse Animation removed as it used shadows */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .brand-name {
        font-size: 4rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Auth Buttons */
.nav-auth-mobile {
    display: none;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
    padding: 20px;
    width: 100%;
    max-width: 300px;
}

.nav-auth-desktop {
    display: flex;
}

/* Ensure buttons are visible */
.nav-auth-mobile .btn-outline,
.nav-auth-mobile .btn-primary {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 30px 20px;
        transition: all 0.3s ease;
        border-right: 1px solid rgba(139, 0, 0, 0.2);
        overflow-y: auto;
        z-index: 9999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        padding: 18px 30px;
        font-size: 18px;
        font-weight: 600;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 90%;
        max-width: 300px;
        text-align: center;
        margin-bottom: 8px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(139, 0, 0, 0.15);
        color: #ff0000;
        border-color: rgba(139, 0, 0, 0.3);
        transform: translateX(5px);
    }
    
    .nav-auth-desktop {
        display: none !important;
    }
    
    .nav-auth-mobile {
        display: flex !important;
        flex-direction: row;
        gap: 10px;
        margin-top: 25px;
        padding: 15px 0;
        width: 90%;
        max-width: 280px;
        border-top: 1px solid rgba(139, 0, 0, 0.2);
        padding-top: 20px;
    }
    
    .nav-auth-mobile .btn-outline,
    .nav-auth-mobile .btn-primary {
        width: 100% !important;
        text-align: center;
        display: flex !important;
        justify-content: center;
        align-items: center;
        padding: 10px 16px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        margin: 0 !important;
        border-radius: 20px !important;
        transition: all 0.3s ease !important;
        letter-spacing: 0.3px !important;
        text-transform: uppercase !important;
    }
    
    .nav-auth-mobile .btn-outline:hover,
    .nav-auth-mobile .btn-primary:hover {
        transform: translateY(-1px) scale(1.01) !important;
    }
    
    .hamburger {
        display: flex;
        z-index: 10000;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .brand-name {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .vip-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        padding: 20px 15px;
    }
    
    .nav-menu .nav-link {
        padding: 15px 20px;
        font-size: 16px;
        width: 95%;
    }
    
    .nav-auth-mobile {
        width: 95%;
        gap: 12px;
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .nav-auth-mobile {
        gap: 8px;
        margin-top: 20px;
        padding: 12px 0;
        width: 95%;
        max-width: 260px;
    }
    
    .nav-auth-mobile .btn-outline,
    .nav-auth-mobile .btn-primary {
        padding: 8px 14px !important;
        font-size: 13px !important;
        border-radius: 18px !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .brand-name {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
}
