* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #fff;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.3em;
    font-weight: 700;
    background: linear-gradient(90deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #00d4ff;
}

.nav-link.active {
    color: #00ff88;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #00ff88);
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        gap: 20px;
    }
}

.stars {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

header {
    position: relative;
    text-align: center;
    padding: 150px 20px 60px;
    z-index: 1;
}

h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 1s ease;
}

.tagline {
    font-size: 1.3em;
    color: #a0a0a0;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.launch-date {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9em;
    margin-top: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn 1s ease 0.4s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.section {
    margin-bottom: 80px;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #00ff88);
    margin: 15px auto 0;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

.service-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #00d4ff;
}

.service-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

.features-list {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s, background 0.3s;
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(0, 212, 255, 0.1);
}

.feature-icon {
    font-size: 1.8em;
    margin-right: 20px;
    color: #00ff88;
}

.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.partner-card:hover {
    transform: scale(1.05);
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
}

.partner-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #00ff88;
}

.discord-btn {
    display: inline-block;
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 10px;
}

.discord-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.5);
}

footer {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

footer p {
    color: #808080;
}

.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.1));
    border-radius: 20px;
    margin: 60px 0;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2em;
    color: #b0b0b0;
    margin-bottom: 30px;
}

.primary-btn {
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    color: #000;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s;
}

.primary-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2em;
    }

    .services-grid, .partnerships-grid {
        grid-template-columns: 1fr;
    }
}

/* About Us Page Styles */
.about-section {
    margin-bottom: 80px;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 2em;
    margin-bottom: 20px;
    margin-top: 40px;
    text-align: left;
}

.about-text h2:first-of-type {
    margin-top: 0;
}

.about-text h2::after {
    margin: 15px 0 0 0;
}

.about-text p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 120px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

.stat-number {
    font-size: 3em;
    font-weight: 700;
    background: linear-gradient(90deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    color: #a0a0a0;
    font-size: 1em;
    font-weight: 600;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-card {
        flex: 1;
        min-width: 150px;
    }
}

/* Team Page Styles */
.team-section {
    margin-bottom: 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #00ff88);
    opacity: 0;
    transition: opacity 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

.team-card:hover::before {
    opacity: 1;
}

.team-card.founder {
    border-color: rgba(255, 215, 0, 0.3);
}

.team-card.founder:hover {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.team-card.founder::before {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.team-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.team-card h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #fff;
}

.team-role {
    color: #00d4ff;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.2);
    color: #00ff88;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.team-card.founder .team-badge {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.3);
}

.team-info {
    text-align: center;
    margin-bottom: 60px;
}

.team-info h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.team-info p {
    color: #b0b0b0;
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Terms of Service Page Styles */
.tos-section {
    margin-bottom: 80px;
}

.tos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tos-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.tos-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #00ff88);
    opacity: 0;
    transition: opacity 0.3s;
}

.tos-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

.tos-card:hover::before {
    opacity: 1;
}

.tos-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.tos-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #fff;
}

.tos-card p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1rem;
}

.tos-info {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 60px;
}

.tos-info h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.tos-info p {
    color: #b0b0b0;
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px;
}

.tos-info p strong {
    color: #00d4ff;
}

.tos-effective {
    color: #808080 !important;
    font-size: 1rem !important;
    font-style: italic;
    margin-top: 20px !important;
}

@media (max-width: 768px) {
    .tos-grid {
        grid-template-columns: 1fr;
    }

    .tos-card h3 {
        font-size: 1.3em;
    }

    .tos-info h2 {
        font-size: 2em;
    }
}

/* Developer Portfolio Page Styles */
.dev-section {
    margin-bottom: 80px;
}

.dev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.dev-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.dev-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #00ff88);
    opacity: 0;
    transition: opacity 0.3s;
}

.dev-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

.dev-card:hover::before {
    opacity: 1;
}

.dev-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.dev-card h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #fff;
}

.dev-card p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1rem;
}

/* About Me Section */
.dev-about-section {
    margin-bottom: 80px;
}

.dev-about-content {
    max-width: 900px;
    margin: 0 auto;
}

.dev-about-text p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* Skills Card Variant */
.skill-card {
    border-color: rgba(0, 255, 136, 0.2);
}

.skill-card:hover {
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

/* Contact Section */
.dev-contact-section {
    margin-bottom: 80px;
    text-align: center;
}

.dev-contact-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.dev-contact-section > p {
    color: #b0b0b0;
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
}

.dev-contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 50px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    min-width: 300px;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(88, 101, 242, 0.3);
    border-color: rgba(88, 101, 242, 0.5);
}

.contact-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #00d4ff;
}

.discord-username {
    font-size: 1.4em;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
    background: rgba(88, 101, 242, 0.2);
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
}

.contact-note {
    color: #a0a0a0;
    font-size: 0.95em;
    margin-top: 10px;
}

/* Responsive Design for Developer Page */
@media (max-width: 768px) {
    .dev-grid {
        grid-template-columns: 1fr;
    }

    .dev-card h3 {
        font-size: 1.5em;
    }

    .contact-card {
        min-width: 250px;
    }
}

/* Announcement Banner */
.announcement-banner {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 40px;
    animation: slideDown 0.8s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.announcement-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 12px 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.announcement-pill:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.15);
}

.announcement-emoji {
    font-size: 1.2em;
}

.announcement-message {
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .announcement-pill {
        padding: 10px 20px;
        gap: 8px;
    }

    .announcement-emoji {
        font-size: 1.1em;
    }

    .announcement-message {
        font-size: 0.9em;
    }
}
