/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0f111a;
    color: #ffffff;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Navbar Logo Alignment */
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #00d2ff;
}

/* Nav Logo Image Sizing */
.nav-logo {
    height: 35px; /* Adjust height to fit your navbar */
    width: auto;  /* Keeps image proportions intact */
    object-fit: contain;
}
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10%;
    background: rgba(15, 17, 26, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00d2ff;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00d2ff;
}

.discord-btn {
    background: #5865F2;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.discord-btn:hover {
    background: #4752C4 !important;
    color: #fff !important;
}

/* Hero Section */
/* Hero Section with Custom Local Banner */
.hero {
    height: 100vh;
    /* Dark gradient overlay + your local image path */
    background: linear-gradient(rgba(15, 17, 26, 0.8), rgba(15, 17, 26, 0.9)), 
                url('images/botbanner.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 60px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content h1 span {
    color: #00d2ff;
}

.hero-content p {
    font-size: 1.2rem;
    color: #a0a5b5;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s, background 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: #00d2ff;
    color: #0f111a;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Status Card */
.status-card {
    display: inline-flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.online {
    background-color: #2ecc71;
    box-shadow: 0 0 10px #2ecc71;
}

/* Sections General */
section {
    padding: 5rem 10%;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00d2ff;
}

/* Features Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: #161926;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card .icon {
    font-size: 2.5rem;
    color: #00d2ff;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 0.5rem;
}

.card p {
    color: #a0a5b5;
    font-size: 0.95rem;
}

/* Rules Section */
.rules-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
/* Embedded Google Doc Styles */
.doc-container {
    text-align: center;
    padding: 4rem 10%;
}

.iframe-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 2rem auto 0 auto;
    height: 600px; /* Adjust height as needed */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    background-color: #ffffff; /* Gives clean paper background for the doc */
}
.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #161926;
    padding: 1.5rem;
    border-radius: 10px;
}

.rule-num {
    background: #00d2ff;
    color: #0f111a;
    font-weight: bold;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.rule-item h4 {
    margin-bottom: 0.3rem;
}

.rule-item p {
    color: #a0a5b5;
    font-size: 0.95rem;
}
/* Applications Section */
.applications-section {
    padding: 5rem 10%;
    background: #0b0d14;
    text-align: center;
}

.section-header h2 {
    color: #00d2ff;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #a0a5b5;
    margin-bottom: 3.5rem;
    font-size: 1.1rem;
}

/* Grid Layout */
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.app-card {
    position: relative;
    background: #161926;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.app-card:hover {
    transform: translateY(-6px);
    border-color: #00d2ff;
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.15);
}

.app-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

.staff-badge {
    background: rgba(241, 196, 15, 0.15);
    color: #f1c40f;
    border-color: rgba(241, 196, 15, 0.3);
}

.app-icon {
    font-size: 2.8rem;
    color: #00d2ff;
    margin: 1rem 0;
}

.app-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
}

.app-card p {
    color: #a0a5b5;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.app-card .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}
/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: #090a10;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
/* Custom Tebex Store Button */
.btn-tebex {
    background: #00b4d8;
    color: #ffffff;
    border: 1px solid rgba(0, 180, 216, 0.4);
}

.btn-tebex:hover {
    background: #0096c7;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.4);
}
/* Compact Creator Profiles Section */
.streamers-section {
    padding: 3.5rem 8%;
    background: #0d101d;
    text-align: center;
}

/* Reduced card size & gap to fit more items */
.streamers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    max-width: 1300px;
    margin: 0 auto;
}

.creator-profile-card {
    background: #161926;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25 ease, box-shadow 0.25s ease;
}

.creator-profile-card:hover {
    transform: translateY(-4px);
}

.twitch-border:hover {
    border-color: #9146FF;
    box-shadow: 0 4px 15px rgba(145, 70, 255, 0.2);
}

.tiktok-border:hover {
    border-color: #ff0050;
    box-shadow: 0 4px 15px rgba(255, 0, 80, 0.2);
}

/* Compact Header */
.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.platform-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #fff;
}

.twitch-bg { background: #9146FF; }
.tiktok-bg { background: #ff0050; }

.platform-badge {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
}

.twitch-badge {
    background: rgba(145, 70, 255, 0.15);
    color: #a970ff;
    border: 1px solid rgba(145, 70, 255, 0.3);
}

.tiktok-badge {
    background: rgba(255, 0, 80, 0.15);
    color: #ff4d85;
    border: 1px solid rgba(255, 0, 80, 0.3);
}

/* Compact Body */
.profile-body {
    text-align: center;
    margin-bottom: 1rem;
}

.profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #9146FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.6rem auto;
    font-size: 1.2rem;
    color: #a970ff;
}

.tiktok-avatar-border {
    border-color: #ff0050;
    color: #ff0050;
}

.profile-body h3 {
    font-size: 1rem;
    margin: 0 0 0.1rem 0;
}

.creator-handle {
    color: #00d2ff;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.creator-bio {
    color: #a0a5b5;
    font-size: 0.8rem;
    line-height: 1.3;
}

/* Compact Buttons */
.profile-footer .btn {
    width: 100%;
    padding: 0.45rem 0.8rem;
    font-size: 0.82rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
}

.btn-twitch {
    background: #9146FF;
    color: #fff;
}

.btn-twitch:hover {
    background: #772ce8;
}

.btn-tiktok {
    background: #ff0050;
    color: #fff;
}

.btn-tiktok:hover {
    background: #e00047;
}

.profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
/* --- Meet the Team Styling --- */
.team-section {
    padding: 60px 20px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.team-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: #1e2230;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 2px solid #3b82f6;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-placeholder {
    font-size: 28px;
    color: #60a5fa;
    display: none;
}

.team-name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.team-role {
    font-size: 0.85rem;
    color: #60a5fa;
    font-weight: 500;
    margin-top: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    font-size: 0.85rem;
    color: #a0a5b5;
    margin: 0;
    line-height: 1.4;
}
/* --- Centered About Us Section --- */
section#about.about {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    min-height: 50vh;        /* Keeps section nicely proportioned */
    padding: 60px 20px;
    text-align: center;      /* Center-align text */
}

.about .about-card {
    max-width: 750px;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about .about-description {
    color: #a0a5b5;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 15px;
}