
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #131313;
    color: white;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /*background: rgba(0, 0, 0, 0.8);*/
    backdrop-filter: blur(2px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #ffd700;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
}

.btn-login {
    background: #131313;
    color: white;
    /*border: 2px solid rgba(255, 255, 255, 0.3);*/
}

.btn-login:hover {
    background: #ffaa00ff;
}

.btn-discord {
    background: linear-gradient(45deg, #ffb300ff, #cd8200ff);
    color: white;
    transform: scale(1);
}

.btn-discord:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(114, 137, 218, 0.4);
}

.hero-container {
    position: relative;
    height: 100vh;
    width: 100vw;
    background: url('/assets/home-image.webp') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 5rem;
    overflow: hidden;
}

.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.character-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23333;stop-opacity:0.8"/><stop offset="100%" style="stop-color:%23111;stop-opacity:0.9"/></linearGradient></defs><rect width="1200" height="800" fill="url(%23grad1)"/><circle cx="200" cy="400" r="150" fill="%23444" opacity="0.3"/><circle cx="600" cy="300" r="180" fill="%23555" opacity="0.4"/><circle cx="1000" cy="500" r="160" fill="%23333" opacity="0.3"/></svg>') center/cover;
    opacity: 0.4;
}

.welcome-text {
    position: relative;
    z-index: 2;
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.main-title {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    text-transform: uppercase;
    text-align: center;
    user-select: none;
    display: inline-block;
    min-height: clamp(4rem, 12vw, 10rem); /* keep space */
}

/* Smooth fade for each letter */
.main-title span {
    display: inline-block;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.main-title span.visible {
    opacity: 1;
}



.subtitle {
    position: relative;
    z-index: 2;
    color: #e0e0e0;
    font-size: 1.5rem;
    /*font-weight: 300;*/
    letter-spacing: 1px;
    margin-bottom: 3rem;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

.social-links {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2s forwards;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #303030ff;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.8rem;
    backdrop-filter: blur(10px);
    /*border: 1px solid rgba(255, 255, 255, 0.2);*/
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.social-link::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.5s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-link:hover::before {
    left: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.live-streams-section {
    background: #131313;
    min-height: 50vh;
    padding: 60px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: #ffc600;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.status-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0,0,0,0.3);
    border-radius: 20px;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.view-all-btn {
    background: rgba(255, 170, 0, 0.8);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.view-all-btn:hover {
    background: rgba(255, 157, 0, 1);
    transform: translateY(-2px);
}

.streams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.stream-card {
    background: rgba(0,0,0,0.4);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.stream-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.stream-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.stream-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff0000;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.viewer-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.stream-info {
    padding: 20px;
}

.stream-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.stream-channel {
    font-size: 0.9rem;
    color: #b8b8b8;
    margin-bottom: 8px;
}

.stream-time {
    font-size: 0.8rem;
    color: #888;
}

.no-streams {
    text-align: center;
    padding: 60px 20px;
}

.no-streams h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.no-streams p {
    color: #b8b8b8;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.refresh-btn {
    background: rgba(75, 75, 75, 0.8);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.refresh-btn:hover {
    background: rgba(255, 153, 0, 1);
}

/* Server Status */

.server-status-container {
    background: #131313;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    /*box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;*/
    width: 100%;
}

.status-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.status-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.server-item {
    background: rgba(255, 183, 0, 0.17);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    min-width: 250px;
}

.server-item:hover {
    background: rgba(255, 183, 0, 0.17);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.status-indicator {
    font-size: 20px;
    font-weight: bold;
}

.server-item.online .status-indicator {
    color: #4ade80;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.server-name {
    font-weight: 500;
    font-size: 16px;
    color: #e5e5e5;
}

.player-count {
    font-weight: 600;
    font-size: 16px;
    margin-left: auto;
    color: #a3a3a3;
}

.server-item.online .player-count {
    color: #4ade80;
}

.server-item.offline .player-count {
    color: #ef4444;
}

/* Partner section */

.partners-section {
    padding: 80px 0;
    background: #131313;
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #131313;
    opacity: 0.1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.section-number {
    font-size: 18px;
    font-weight: 700;
    color: #ffb235ff;
    margin-right: 30px;
}

.section-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: capitalize;
    letter-spacing: -2px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    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;
    min-height: 120px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.partner-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 162, 0, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.2);
}
.partner-item {
    position: relative;
    overflow: hidden;
}

.partner-name-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.partner-item:hover .partner-name-overlay {
    opacity: 1;
}

.partner-logo {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    filter: brightness(0.8) contrast(1.2);
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo {
    filter: brightness(1) contrast(1);
}

/* Placeholder for partners without logos */
.partner-placeholder {
    font-size: 18px;
    font-weight: 600;
    color: #cccccc;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* talk about section */

.talk-about-section {
    background: #131313;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.talk-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #131313;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.content-wrapper {
    text-align: left;
    max-width: 600px;
}

.section-number {
    color: #DAA520;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.main-heading {
    color: #ffffff;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main-heading .brand-text {
    color: #DAA520;
}

.cta-button {
    display: inline-block;
    background: #DAA520;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(218, 165, 32, 0.4);
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Footer Styles */

.footer-section {
background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
color: #ffffff;
padding: 40px 0 20px;
border-top: 1px solid #333;
}

.footer-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: grid;
grid-template-columns: 1fr 300px 200px 200px;
gap: 40px;
align-items: start;
}

.footer-brand .logo-img {
height: 60px;
margin-bottom: 15px;
}

.business-info {
color: #cccccc;
font-size: 14px;
margin: 0;
}

.email-link {
color: #ffc600;
text-decoration: none;
transition: color 0.3s ease;
}

.email-link:hover {
color: #ffc600;
}

.status-title {
color: #ffffff;
font-size: 18px;
font-weight: 600;
margin-bottom: 20px;
}

.status-list {
display: flex;
flex-direction: column;
gap: 15px;
}

.status-item {
background: rgba(255, 255, 255, 0.05);
border-radius: 8px;
padding: 12px 16px;
border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-indicator {
display: flex;
align-items: center;
gap: 10px;
}

.status-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background-color: #ffb700ff;
display: inline-block;
}

.status-indicator.offline .status-dot {
background-color: #ff4757;
}

.server-name {
font-weight: 500;
flex-grow: 1;
}

.player-count {
color: #cccccc;
font-size: 14px;
}

.links-column {
display: flex;
flex-direction: column;
gap: 12px;
}

.footer-link {
color: #cccccc;
text-decoration: none;
font-size: 14px;
transition: color 0.3s ease;
}

.footer-link:hover {
color: #ffb700ff;
}

.social-links2 {
display: flex;
flex-direction: column;
gap: 15px;
}

.social-link2 {
display: flex;
align-items: center;
gap: 10px;
color: #cccccc;
text-decoration: none;
font-size: 14px;
transition: all 0.3s ease;
padding: 8px;
border-radius: 6px;
}

.social-link2:hover {
color: #ffffff;
background: rgba(255, 255, 255, 0.1);
}

.social-link2.discord:hover {
color: #5865f2;
}

.social-link2.twitter:hover {
color: #1da1f2;
}

.social-link2.youtube:hover {
color: #ff0000;
}

.footer-bottom {
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #333;
}

.copyright {
text-align: center;
color: #888888;
font-size: 14px;
margin: 0;
}

/* Add these mobile responsive styles to your existing CSS */

/* Mobile Navigation */
@media (max-width: 768px) {
.navbar {
padding: 1rem;
flex-wrap: wrap;
}

.nav-links {
display: none; /* Hide navigation links on mobile */
width: 100%;
order: 3;
flex-direction: column;
background: rgba(0, 0, 0, 0.95);
position: absolute;
top: 100%;
left: 0;
right: 0;
padding: 1rem;
backdrop-filter: blur(10px);
}

.nav-links.active {
display: flex;
}

.nav-links li {
margin: 0.5rem 0;
}

.auth-buttons {
gap: 0.5rem;
}

.btn {
padding: 0.5rem 1rem;
font-size: 0.9rem;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
display: block;
background: none;
border: none;
color: white;
font-size: 1.5rem;
cursor: pointer;
order: 2;
}

.logo img {
height: 60px;
}
}

/* Hide mobile menu toggle on desktop */
@media (min-width: 769px) {
.mobile-menu-toggle {
display: none;
}
}

/* Hero Section Mobile */
@media (max-width: 768px) {
.hero-container {
padding-left: 2rem;
padding-right: 2rem;
text-align: center;
align-items: center;
}

.welcome-text {
font-size: 1rem;
letter-spacing: 1px;
}

.main-title {
font-size: clamp(3rem, 15vw, 6rem);
margin-bottom: 1rem;
}

.subtitle {
font-size: 1.1rem;
margin-bottom: 2rem;
}

.social-links {
gap: 1rem;
justify-content: center;
}

.social-link {
width: 50px;
height: 50px;
font-size: 1.2rem;
}
}

/* Server Status Mobile */
@media (max-width: 768px) {
.server-status-container {
padding: 20px;
margin: 20px;
}

.status-title {
font-size: 1.5rem;
margin-bottom: 20px;
}

.status-grid {
flex-direction: column;
align-items: center;
}

.server-item {
min-width: 100%;
max-width: 350px;
padding: 15px 20px;
}
}

/* Live Streams Mobile */
@media (max-width: 768px) {
.live-streams-section {
padding: 40px 15px;
}

.section-title {
font-size: 2rem;
}

.section-subtitle {
font-size: 1rem;
padding: 0 10px;
}

.status-bar {
flex-direction: column;
gap: 15px;
}

.streams-grid {
grid-template-columns: 1fr;
gap: 20px;
margin-top: 30px;
}

.stream-card {
max-width: 100%;
}

.stream-thumbnail {
height: 180px;
}
}

/* Partners Section Mobile */
@media (max-width: 768px) {
.partners-section {
padding: 60px 15px;
}

.section-header {
flex-direction: column;
align-items: flex-start;
margin-bottom: 40px;
}

.section-number {
margin-right: 0;
margin-bottom: 10px;
}

.section-title {
font-size: 2.5rem;
}

.partners-grid {
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 20px;
}

.partner-item {
padding: 20px;
min-height: 100px;
}

.partner-placeholder {
font-size: 14px;
}
}

/* Talk About Section Mobile */
@media (max-width: 768px) {
.talk-about-section {
padding: 60px 20px;
text-align: center;
}

.content-wrapper {
max-width: 100%;
text-align: center;
}

.main-heading {
font-size: clamp(2rem, 8vw, 3rem);
margin-bottom: 30px;
}

.cta-button {
padding: 15px 30px;
font-size: 14px;
}
}

/* Footer Mobile */
@media (max-width: 768px) {
.footer-section {
padding: 30px 0 15px;
}

.footer-container {
grid-template-columns: 1fr;
gap: 30px;
padding: 0 15px;
}

.footer-brand {
text-align: center;
}

.logo-img {
height: 70px;
}

.business-info {
text-align: center;
}

.server-status {
text-align: center;
}

.status-list {
max-width: 300px;
margin: 0 auto;
}

.footer-links .links-column {
text-align: center;
}

.social-links2 {
flex-direction: row;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
}

.social-link2 {
justify-content: center;
min-width: 120px;
}

.footer-bottom {
margin-top: 20px;
padding-top: 15px;
}
}

/* Small Mobile Devices (320px and up) */
@media (max-width: 480px) {
.hero-container {
padding-left: 1rem;
padding-right: 1rem;
}

.main-title {
font-size: clamp(2.5rem, 12vw, 4rem);
}

.subtitle {
font-size: 1rem;
}

.server-item {
flex-direction: column;
text-align: center;
gap: 8px;
}

.player-count {
margin-left: 0;
}

.section-title {
font-size: 1.8rem;
}

.main-heading {
font-size: clamp(1.8rem, 10vw, 2.5rem);
}

.partners-grid {
grid-template-columns: 1fr;
}
}

/* Very small screens */
@media (max-width: 320px) {
.navbar {
padding: 0.5rem;
}

.logo img {
height: 50px;
}

.auth-buttons {
flex-direction: column;
gap: 0.3rem;
}

.btn {
padding: 0.4rem 0.8rem;
font-size: 0.8rem;
}

.main-title {
font-size: 2rem;
}

.section-title {
font-size: 1.5rem;
}
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
.hero-container {
height: 100vh;
padding-top: 80px;
}

.main-title {
font-size: clamp(2rem, 8vw, 3rem);
}
}