/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    min-height: 100vh;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #000000;
    border-bottom: 2px solid #ffffff;
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    padding: 0 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    width: 100%;
}

/* Brand Section */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.brand-link:hover {
    opacity: 0.8;
}

.logo {
    width: 36px;
    height: 36px;
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger {
    width: 24px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Navigation */
.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-links a:hover {
    color: #000000;
    background: #ffffff;
    border: 1px solid #ffffff;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 8px 0;
    margin: 8px 0 0 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    color: #000000 !important;
    background: transparent !important;
    border: none !important;
    padding: 10px 16px;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: #000000 !important;
    color: #ffffff !important;
}

/* Action Buttons */
.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.nav-actions .btn-icon {
    margin-right: 6px;
}

.nav-actions .btn-text {
    font-weight: 500;
}

/* Button Styles */
.btn-primary, .btn-secondary, .btn-primary-large, .btn-secondary-large,
a.btn-primary, a.btn-secondary, a.btn-primary-large, a.btn-secondary-large {
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    padding: 8px 16px;
    font-size: 0.85rem;
    border: 2px solid #ffffff;
}

.btn-primary:hover {
    background: #000000;
    color: #ffffff;
    border: 2px solid #ffffff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 8px 16px;
    border: 2px solid #ffffff;
    font-size: 0.85rem;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
}

.btn-primary-large {
    background: #ffffff;
    color: #000000;
    padding: 16px 32px;
    font-size: 1rem;
    border: 2px solid #ffffff;
}

.btn-primary-large:hover {
    background: #000000;
    color: #ffffff;
    border: 2px solid #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary-large {
    background: transparent;
    color: #ffffff;
    padding: 16px 32px;
    border: 2px solid #ffffff;
    font-size: 1rem;
}

.btn-secondary-large:hover {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    transform: translateY(-2px);
}

/* Main Content */
main {
    margin-top: 50px;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background: #000000;
}

.hero-content {
    margin-bottom: 60px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-search {
    max-width: 600px;
    margin: 0 auto;
}

.search-container {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 15px 60px 15px 25px;
    font-size: 1rem;
    color: #ffffff;
    outline: none;
}

.search-input::placeholder {
    color: #cccccc;
}

.search-btn {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 50%, #4d4d4d 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Popular Games Section */
.popular-games {
    padding: 100px 0;
    background: linear-gradient(135deg, #333333 0%, #4d4d4d 50%, #666666 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.game-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
}

.game-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.game-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.game-card p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #4d4d4d 0%, #666666 50%, #808080 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 3px solid #ffffff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 8px;
    transition: opacity 0.3s ease;
}

.footer-brand-link:hover {
    opacity: 0.8;
}

.footer-logo {
    width: 32px;
    height: 32px;
}

.footer-brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-description {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Footer Sections */
.footer-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #ffffff;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 12px;
    margin-left: -12px;
}

.footer-nav a:hover {
    color: #ffffff;
    border-left-color: #ffffff;
    padding-left: 16px;
}

/* Footer Guidelines */
.footer-guidelines {
    position: relative;
}

.guidelines-dropdown {
    position: relative;
    width: 100%;
}

.guidelines-btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
}

.guidelines-btn:hover {
    background: #ffffff;
    color: #000000;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.guidelines-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Footer Social */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-link:hover {
    color: #000000;
    background: #ffffff;
    border: 1px solid #ffffff;
}

.social-icon {
    font-size: 1.1rem;
}

.social-text {
    font-weight: 500;
}

.guidelines-btn:hover {
    color: #000000;
    background: #ffffff;
    border: 2px solid #ffffff;
}

.guidelines-btn::after {
    content: "▼";
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.guidelines-dropdown:hover .guidelines-btn::after {
    transform: rotate(180deg);
}

.guidelines-menu {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border: 3px solid #000000;
    border-radius: 8px;
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.guidelines-dropdown:hover .guidelines-menu {
    opacity: 1;
    visibility: visible;
}

.guidelines-menu a {
    display: block;
    padding: 8px 16px;
    color: #000000;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.guidelines-menu a:hover {
    color: #ffffff;
    background: #000000;
    border-left-color: #ffffff;
}

.guidelines-menu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border-left-color: #4f46e5;
}

.guidelines-menu a::before {
    content: "📋";
    margin-right: 8px;
    opacity: 0.7;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.social-link:hover {
    color: #000000;
    background: #ffffff;
    border: 1px solid #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #ffffff;
}

.footer-bottom p {
    color: #999999;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        height: auto;
        gap: 10px;
        padding: 15px 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-actions {
        gap: 10px;
    }
    
    main {
        margin-top: 80px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-brand {
        order: -1;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .guidelines-btn {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
    }
    
    .footer-links, .footer-social {
        gap: 15px;
    }
    
    .guidelines-menu {
        position: fixed;
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        max-width: 280px;
        z-index: 1000;
    }
    
    .guidelines-dropdown:hover .guidelines-menu {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .features, .popular-games, .cta {
        padding: 60px 0;
    }
    
    .footer-grid {
        gap: 20px;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
    }
    
    .footer-section a,
    .social-link {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .search-container {
        padding: 15px;
    }
    
    .search-input {
        padding: 12px 50px 12px 20px;
        font-size: 0.9rem;
    }
}

/* Page Content Styles */
.page-content {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 50%, #4d4d4d 100%);
    min-height: 100vh;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    text-align: center;
    margin-bottom: 50px;
}

.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.content-section p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-section ul {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 25px;
}

.content-section li {
    margin-bottom: 8px;
}

.lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: #e0e0e0 !important;
}

/* Support Page Styles */
.support-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.support-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
}

.contact-item h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-item p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.contact-item a {
    color: #e0e0e0;
    text-decoration: none;
}

.contact-item a:hover {
    color: #ffffff;
}

/* FAQ Styles */
.faq-category {
    margin-bottom: 40px;
}

.faq-category h3 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 1.3rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h4 {
    color: #ffffff;
    margin: 0;
    font-size: 1rem;
}

.faq-toggle {
    color: #cccccc;
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: #cccccc;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Contact Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 15px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.resource-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
}

.resource-item h4 {
    color: #ffffff;
    margin-bottom: 10px;
}

.resource-item p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.about-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.value-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
}

.value-item h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-label {
    color: #cccccc;
    font-size: 0.9rem;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.platform-item {
    background: #ffffff;
    color: #000000;
    border: 3px solid #000000;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.platform-item:hover {
    background: #000000;
    color: #ffffff;
    border: 3px solid #ffffff;
    transform: translateY(-5px);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.platform-item ul {
    margin-top: 15px;
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.involvement-item {
    background: #ffffff;
    color: #000000;
    border: 2px solid #000000;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

.involvement-item:hover {
    background: #000000;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.contact-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
}

.contact-option h4 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Links */
.external-link,
.internal-link {
    color: #e0e0e0;
    text-decoration: underline;
}

.external-link:hover,
.internal-link:hover {
    color: #ffffff;
}

/* Active states */
.nav-links a.active,
.footer-links a.active {
    color: #ffffff !important;
    font-weight: 600;
}

/* Mobile responsiveness for new content */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .support-actions,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platforms-grid,
    .involvement-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-content {
        padding: 100px 0 40px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Discovery Page Styles */
.discovery-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(44, 44, 44, 0.9) 50%, rgba(255, 255, 255, 0.1) 100%);
}

.discovery-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.discovery-controls {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.search-section {
    width: 100%;
    max-width: 500px;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-tab:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.filter-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.sort-section {
    max-width: 200px;
}

.sort-select {
    width: 100%;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
}

.sort-select option {
    background: #1a1a1a;
    color: #ffffff;
}

.discovery-grid {
    padding: 60px 0;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.listing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.listing-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.listing-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.listing-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.listing-info {
    flex: 1;
    min-width: 0;
}

.listing-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #ffffff;
    line-height: 1.3;
}

.listing-owner {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 8px 0;
}

.username {
    color: #667eea;
    font-weight: 500;
}

.listing-stats {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.listing-actions {
    flex-shrink: 0;
}

.report-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.report-btn:hover {
    background: rgba(255, 0, 0, 0.1);
    color: #ff6b6b;
}

.listing-description {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.95rem;
}

.listing-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.voting-section {
    display: flex;
    gap: 10px;
}

.vote-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.vote-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.vote-btn.upvote.voted {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.vote-btn.downvote.voted {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.join-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.load-more-section {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

.load-more-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px);
}

/* Placeholder Cards */
.listing-card.placeholder {
    opacity: 0.6;
    pointer-events: none;
}

.placeholder-content {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.placeholder-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.1) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.placeholder-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.placeholder-line {
    height: 16px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.1) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    border-radius: 4px;
}

.placeholder-line.short {
    width: 60%;
}

.placeholder-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.placeholder-tag {
    width: 60px;
    height: 24px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.1) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    border-radius: 12px;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Responsive Design for Discovery */
@media (max-width: 768px) {
    .discovery-controls {
        gap: 15px;
    }
    
    .filter-tabs {
        gap: 8px;
    }
    
    .filter-tab {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .listings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .listing-card {
        padding: 20px;
    }
    
    .listing-header {
        gap: 12px;
    }
    
    .listing-icon {
        width: 50px;
        height: 50px;
    }
    
    .listing-title {
        font-size: 1.2rem;
    }
    
    .listing-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .voting-section {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .discovery-header {
        padding: 100px 0 40px;
    }
    
    .discovery-controls {
        margin-top: 30px;
    }
    
    .listings-grid {
        gap: 15px;
    }
    
    .listing-card {
        padding: 15px;
    }
    
    .listing-stats {
        flex-direction: column;
        gap: 5px;
    }
}

/* Report Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: #ffffff;
    border: 4px solid #000000;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

.modal-header {
    padding: 25px 30px 20px;
    border-bottom: 3px solid #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
}

.modal-header h2 {
    margin: 0;
    color: #000000;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close {
    background: #ffffff;
    border: 2px solid #000000;
    color: #000000;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
}

.modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
    background: #ffffff;
    color: #000000;
}

.report-info {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
}

.report-info h3 {
    margin: 0 0 10px 0;
    color: #667eea;
    font-size: 1.1rem;
}

.report-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.report-form .form-group {
    margin-bottom: 20px;
}

.report-form label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
}

.report-form select,
.report-form input[type="text"],
.report-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.report-form select:focus,
.report-form input[type="text"]:focus,
.report-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.report-form select option {
    background: #1a1a1a;
    color: #ffffff;
}

.report-form textarea {
    resize: vertical;
    min-height: 100px;
}

.file-upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.file-upload-area:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.file-upload-content svg {
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 15px;
}

.file-upload-content p {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.file-upload-hint {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-weight: 400 !important;
}

.uploaded-files {
    margin-top: 15px;
}

.uploaded-file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 8px;
}

.uploaded-file-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.uploaded-file-name {
    color: #ffffff;
    font-size: 0.9rem;
}

.uploaded-file-size {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.uploaded-file-remove {
    background: none;
    border: none;
    color: rgba(255, 0, 0, 0.7);
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.uploaded-file-remove:hover {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 0 !important;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: "✓";
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-label span:not(.checkbox-custom) {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
}

.modal-footer {
    padding: 20px 30px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.serverseek-banner {
    margin-bottom: 20px;
    text-align: center;
}

.banner-image {
    max-width: 250px;
    height: auto;
    opacity: 0.9;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.modal-actions .btn-secondary,
.modal-actions .btn-primary {
    padding: 12px 24px;
    font-size: 0.95rem;
    min-width: 120px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .file-upload-area {
        padding: 30px 15px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn-secondary,
    .modal-actions .btn-primary {
        width: 100%;
        min-width: auto;
    }
    
    .banner-image {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .modal {
        padding: 10px;
    }
    
    .modal-content {
        margin: 0;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 15px;
    }
    
    .file-upload-area {
        padding: 25px 10px;
    }
    
    .uploaded-file {
        padding: 8px 12px;
    }
}

/* List Server Page Styles - Black & White Theme */
.list-hero {
    background: #000000;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.list-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #000000;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: scale(1.05);
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #ffffff;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin: 0 0 40px 0;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.stat-box {
    text-align: center;
    padding: 20px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    transition: transform 0.3s ease;
}

.stat-label {
    font-size: 0.85rem;
    color: #cccccc;
    font-weight: 500;
}

/* Platform Selection */
.platform-selection {
    padding: 80px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 16px 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666666;
    margin: 0;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-card {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.platform-card:hover::before {
    opacity: 0.05;
}

.platform-card:hover {
    border-color: #000000;
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.platform-card:hover .card-header,
.platform-card:hover .card-content,
.platform-card:hover .platform-btn {
    position: relative;
    z-index: 2;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.platform-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.discord-icon {
    background: #5865F2;
}

.bot-icon {
    background: #000000;
}

.minecraft-icon {
    background: #00AA00;
}

.roblox-icon {
    background: #FF0000;
}

.platform-info {
    flex: 1;
}

.platform-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 4px 0;
}

.platform-count {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
}

.card-content {
    margin-bottom: 32px;
}

.platform-description {
    color: #333333;
    margin: 0 0 20px 0;
    line-height: 1.6;
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding: 6px 0 6px 24px;
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 6px;
    color: #000000;
    font-weight: bold;
    font-size: 0.8rem;
}

.platform-btn {
    width: 100%;
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.platform-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #000000;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: #ffffff;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: #ffffff;
    color: #000000;
    border: 2px solid #000000;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 12px 0;
}

.benefit-description {
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Ready to Start Section */
.ready-start {
    padding: 80px 0;
    background: #000000;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.cta-note {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 500px;
}

.cta-note svg {
    flex-shrink: 0;
    opacity: 0.8;
}

/* List Server Page Responsive */
@media (max-width: 1024px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .list-hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }
    
    .stat-box {
        padding: 16px 12px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .platform-selection,
    .why-choose,
    .ready-start {
        padding: 60px 0;
    }
    
    .section-title,
    .cta-title {
        font-size: 2rem;
    }
    
    .platform-card {
        padding: 24px 20px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .platform-icon {
        width: 56px;
        height: 56px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 24px 20px;
    }
    
    .cta-note {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .section-title,
    .cta-title {
        font-size: 1.75rem;
    }
    
    .platform-card {
        padding: 20px 16px;
    }
    
    .platform-icon {
        width: 48px;
        height: 48px;
    }
    
    .platform-title {
        font-size: 1.25rem;
    }
    
    .platform-btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .benefit-card {
        padding: 20px 16px;
    }
    
    .benefit-icon {
        width: 48px;
        height: 48px;
    }
    
    .benefit-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .getting-started {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .list-server-header {
        padding: 4rem 0 3rem;
    }
    
    .service-selection {
        padding: 2rem 0;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .benefits-section {
        margin: 2rem 0;
    }
    
    .benefits-title {
        font-size: 1.5rem;
    }
    
    .getting-started {
        padding: 1.5rem 1rem;
    }
    
    .getting-started-title {
        font-size: 1.5rem;
    }
}

/* Discord Bots Page Styles */
.discord-bots-header {
    background: linear-gradient(135deg, #5865f2 0%, #3b49df 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.discord-bots-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.discord-bots-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.discord-bot-icon {
    background: linear-gradient(135deg, #5865f2 0%, #3b49df 100%) !important;
    color: white;
}

.listing-card[data-type="discord-bot"] .tag {
    background: rgba(88, 101, 242, 0.1);
    color: #5865f2;
}

.listing-card[data-type="discord-bot"] .join-btn {
    background: linear-gradient(135deg, #5865f2 0%, #3b49df 100%);
}

.listing-card[data-type="discord-bot"] .vote-btn.voted.upvote {
    background: rgba(88, 101, 242, 0.1);
    border-color: #5865f2;
    color: #5865f2;
}

/* Bot Category Specific Colors */
.listing-card[data-category="music"] .tag {
    background: rgba(139, 69, 19, 0.1);
    color: #8b4513;
}

.listing-card[data-category="moderation"] .tag {
    background: rgba(220, 38, 127, 0.1);
    color: #dc267f;
}

.listing-card[data-category="utility"] .tag {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.listing-card[data-category="fun"] .tag {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.listing-card[data-category="economy"] .tag {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

/* ServerSeek Banner Section */
.serverseek-banner-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(44, 44, 44, 0.9) 50%, rgba(255, 255, 255, 0.1) 100%);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.serverseek-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
    animation: floatingLights 10s ease-in-out infinite;
}

@keyframes floatingLights {
    0%, 100% { opacity: 1; transform: translateY(0px); }
    50% { opacity: 0.8; transform: translateY(-10px); }
}

.serverseek-banner-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 98px,
        rgba(255, 255, 255, 0.02) 100px
    );
    z-index: 2;
}

.banner-wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin: 0 auto;
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.4s ease;
}

.banner-wrapper:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.homepage-banner {
    max-width: 100%;
    height: auto;
    max-height: 220px;
    filter: 
        drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5))
        drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    transition: all 0.4s ease;
    border-radius: 10px;
}

.homepage-banner:hover {
    filter: 
        drop-shadow(0 15px 40px rgba(0, 0, 0, 0.6))
        drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .serverseek-banner-section {
        padding: 3rem 0;
    }
    
    .banner-wrapper {
        padding: 1.5rem;
        margin: 0 1rem;
        transform: none;
    }
    
    .banner-wrapper:hover {
        transform: translateY(-3px);
    }
    
    .homepage-banner {
        max-height: 160px;
    }
}

@media (max-width: 480px) {
    .serverseek-banner-section {
        padding: 2rem 0;
    }
    
    .banner-wrapper {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .homepage-banner {
        max-height: 120px;
    }
    
    .homepage-banner:hover {
        transform: scale(1.01);
    }
}

/* Discord Community Section Styles */
.discord-community {
    background: rgba(88, 101, 242, 0.05);
    border: 1px solid rgba(88, 101, 242, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.discord-invite h3 {
    color: #5865f2;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.discord-benefits {
    margin: 1.5rem 0;
}

.discord-benefits ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.discord-benefits li {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
}

.discord-join-btn, .discord-contact-btn {
    display: inline-block;
    background: linear-gradient(135deg, #5865f2, #4752c4);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-join-btn:hover, .discord-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
    color: white;
    text-decoration: none;
}

.primary-contact {
    background: rgba(88, 101, 242, 0.05);
    border: 2px solid rgba(88, 101, 242, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.primary-contact h4 {
    color: #5865f2;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .discord-benefits ul {
        grid-template-columns: 1fr;
    }
    
    .discord-community {
        padding: 1.5rem;
    }
}

/* Platform Modal Styles */
.game-card.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-card.clickable:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.platform-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.platform-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(44, 44, 44, 0.9) 50%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.modal-header h2 {
    color: white;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.modal-description {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.modal-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.feature-check {
    color: #22c55e;
    font-weight: 600;
    margin-right: 0.8rem;
    font-size: 1rem;
}

.modal-stats {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-stats strong {
    color: white;
    font-size: 1.2rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-actions .btn-primary,
.modal-actions .btn-secondary {
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
}

.modal-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.modal-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.modal-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Platform-specific modal styling */
#discord-servers-modal .modal-header .modal-icon,
#discord-servers-modal .modal-actions .btn-primary {
    color: #5865f2;
}

#discord-servers-modal .modal-actions .btn-primary {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    color: white;
}

#discord-bots-modal .modal-actions .btn-primary {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
}

#minecraft-servers-modal .modal-actions .btn-primary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

#roblox-games-modal .modal-actions .btn-primary {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.modal-rules-link {
    margin-top: 1rem;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rules-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.rules-link:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .platform-modal {
        padding: 1rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        max-height: 90vh;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-icon {
        font-size: 2.5rem;
    }
}

/* Modal Guidelines Styles */
.modal-guidelines {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.modal-guidelines h4 {
    color: white;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guidelines-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.guideline-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.guideline-item.allowed {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.guideline-item.not-allowed {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.guideline-item:hover {
    transform: translateX(3px);
}

.guideline-item.allowed:hover {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
}

.guideline-item.not-allowed:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
}

.guideline-icon {
    font-size: 1rem;
    font-weight: 600;
    flex-shrink: 0;
}

/* Responsive Guidelines */
@media (max-width: 768px) {
    .modal-guidelines {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .modal-guidelines h4 {
        font-size: 1rem;
    }
    
    .guideline-item {
        padding: 0.4rem;
        font-size: 0.85rem;
    }
    
    .guideline-icon {
        font-size: 0.9rem;
    }
}

/* Rules Pages Styles */
.rules-page {
    padding: 2rem 0;
    min-height: 100vh;
    background: #000000;
}

.rules-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #ffffff;
    color: #000000;
    border-radius: 20px;
    border: 4px solid #000000;
}

.rules-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.rules-header h1 {
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.rules-subtitle {
    color: #000000;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.rules-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Table of Contents */
.rules-toc {
    background: #ffffff;
    border: 3px solid #000000;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.rules-toc h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.toc-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.toc-nav a {
    color: #000000;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.toc-nav a:hover {
    background: #000000;
    color: #ffffff;
    transform: translateX(5px);
    border: 1px solid #000000;
}

/* Rules Sections */
.rules-section {
    margin-bottom: 3rem;
    background: #ffffff;
    border: 3px solid #000000;
    border-radius: 20px;
    padding: 2rem;
}

.rules-section h2 {
    color: #000000;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Rules Grid */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.rule-card {
    padding: 1.5rem;
    border-radius: 15px;
    border: 3px solid #000000;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #000000;
}

.rule-card.allowed {
    background: #ffffff;
    border-color: #000000;
}

.rule-card.prohibited {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
}

.rule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.rule-card.allowed:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.rule-card.prohibited:hover {
    background: #ffffff;
    color: #000000;
    border-color: #000000;
}

.rule-card h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rule-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.rule-card ul {
    list-style: none;
    padding: 0;
}

.rule-card li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.3rem 0;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.rule-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
}

/* Quality Standards */
.quality-standards,
.quality-requirements {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quality-item,
.standard-item,
.requirement-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.quality-item:hover,
.standard-item:hover,
.requirement-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.quality-icon,
.standard-icon,
.req-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.quality-content,
.standard-content,
.req-content {
    flex: 1;
}

.quality-content h4,
.standard-content h4,
.req-content h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.quality-content p,
.standard-content p,
.req-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Tech Requirements */
.tech-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.tech-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.tech-category h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.requirement-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.req-item .req-icon {
    color: #22c55e;
    font-weight: 600;
    font-size: 1rem;
}

/* Listing Requirements */
.listing-checklist {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
}

.listing-checklist h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.check-icon {
    color: #22c55e;
    font-weight: 600;
    font-size: 1rem;
}

/* Asset Requirements */
.asset-requirements,
.link-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.asset-item,
.link-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Guidelines Content */
.guidelines-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.guideline-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.guideline-block:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.guideline-block h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guideline-block p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Enforcement Info */
.enforcement-info,
.monitoring-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.enforcement-card,
.monitoring-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.enforcement-card:hover,
.monitoring-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.enforcement-card h4,
.monitoring-card h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.enforcement-card p,
.monitoring-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Review Steps */
.review-steps,
.verification-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0 auto 1rem auto;
}

.step-content h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Monetization Guidelines */
.monetization-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.monetization-card {
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid;
    backdrop-filter: blur(10px);
}

.monetization-card.allowed {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.monetization-card.prohibited {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.monetization-card h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.monetization-note {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 1rem;
}

.monetization-note p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

/* Timeline */
.review-timeline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.review-timeline h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.timeline-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.timeline-value {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Contact Section */
.rules-contact {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.rules-contact h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.rules-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.contact-buttons .btn-primary,
.contact-buttons .btn-secondary {
    padding: 0.8rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-buttons .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.contact-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.contact-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Responsive Rules Pages */
@media (max-width: 768px) {
    .rules-header h1 {
        font-size: 2rem;
    }
    
    .rules-subtitle {
        font-size: 1rem;
    }
    
    .rules-icon {
        font-size: 3rem;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .toc-nav {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tech-requirements {
        grid-template-columns: 1fr;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
    }
    
    .monetization-info {
        grid-template-columns: 1fr;
    }
    
    .timeline-info {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   DISCOVERY PAGE STYLES
   =================================== */

/* Discovery Hero Section */
.discovery-hero {
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    padding: 120px 0 80px 0;
    border-bottom: 2px solid #333333;
    position: relative;
    overflow: hidden;
}

.discovery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 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;
    line-height: 1.6;
}

/* Enhanced Search */
.search-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.search-container-enhanced {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 6px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.search-container-enhanced:focus-within {
    border-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2), 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
}

.search-icon {
    color: #666666;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.search-container-enhanced:focus-within .search-icon {
    color: #333333;
}

.search-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #333333;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 16px 0;
    flex: 1;
}

.search-input::placeholder {
    color: #888888;
    font-weight: 400;
}

.search-clear {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.1);
    border: none;
    color: #666666;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.search-clear:hover {
    background: rgba(0, 0, 0, 0.15);
    color: #333333;
}

.search-btn-enhanced {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.search-btn-enhanced:hover {
    background: linear-gradient(135deg, #333333 0%, #555555 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.search-btn-enhanced:active {
    transform: translateY(0);
}

/* Search Suggestions */
.search-suggestions {
    margin-top: 20px;
    opacity: 0.9;
}

.popular-searches {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.suggestions-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    margin-right: 8px;
}

.suggestion-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 6px 14px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.suggestion-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: translateY(-1px);
}

/* Discovery Controls */
.discovery-controls {
    background: #000000;
    padding: 40px 0;
    border-bottom: 1px solid #333333;
}

.controls-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
}

.filter-section h3,
.sort-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.filter-tab.active {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.tab-icon {
    font-size: 1.1rem;
}

.tab-count {
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.filter-tab.active .tab-count {
    background: rgba(0, 0, 0, 0.1);
}

/* Sort Controls */
.sort-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sort-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    min-width: 180px;
    transition: all 0.3s ease;
}

.sort-select:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.sort-select option {
    background: #000000;
    color: #ffffff;
}

/* View Toggle */
.view-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.view-btn {
    background: transparent;
    border: none;
    padding: 12px;
    color: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.view-btn.active {
    background: #ffffff;
    color: #000000;
}

/* Discovery Results */
.discovery-results {
    background: #000000;
    padding: 40px 0 80px 0;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.results-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.results-count {
    color: #888888;
    font-size: 0.9rem;
}

.count-number {
    color: #ffffff;
    font-weight: 600;
}

.refresh-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    color: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.refresh-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: rotate(180deg);
}

/* Community Grid */
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.community-grid.list-view {
    grid-template-columns: 1fr;
}

/* Community Cards */
.community-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.community-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.community-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.community-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bot-avatar {
    background: linear-gradient(135deg, #5865f2 0%, #3b82f6 100%);
    color: #ffffff;
}

.status-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #000000;
}

.status-indicator.online {
    background: #22c55e;
}

.status-indicator.offline {
    background: #6b7280;
}

.community-meta {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Platform Badges */
.platform-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.platform-badge.discord {
    background: rgba(88, 101, 242, 0.2);
    color: #5865f2;
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.platform-badge.minecraft {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.platform-badge.roblox {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.platform-badge.bot {
    background: rgba(147, 51, 234, 0.2);
    color: #9333ea;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

/* Favorite Button */
.favorite-btn {
    background: none;
    border: none;
    color: #888888;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorite-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.favorite-btn.favorited {
    color: #ffd700;
}

/* Card Content */
.card-content {
    margin-bottom: 20px;
}

.community-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    line-height: 1.4;
}

.community-description {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Community Stats */
.community-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #888888;
    font-size: 0.85rem;
}

.stat-item svg {
    opacity: 0.7;
}

.stat-item.rating {
    color: #ffd700;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

/* Community Tags */
.community-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    color: #cccccc;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card Footer */
.card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
}

.community-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid;
    text-decoration: none;
}

.action-btn.primary {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.action-btn.primary:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.action-btn.secondary {
    background: transparent;
    color: #cccccc;
    border-color: rgba(255, 255, 255, 0.2);
}

.action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Loading Cards */
.loading-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    text-align: center;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.loading-spinner {
    color: #888888;
}

.loading-text h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.loading-text p {
    color: #888888;
    font-size: 0.9rem;
}

/* Skeleton Loading for normal loading cards */
.skeleton-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.1) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 12px;
    margin-bottom: 16px;
}

.skeleton-content {
    width: 100%;
}

.skeleton-line {
    height: 16px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.1) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 8px;
}

.skeleton-line.short {
    width: 60%;
}

.skeleton-tags {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.skeleton-tag {
    width: 60px;
    height: 24px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.1) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 6px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 24px;
    color: #ffffff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.load-more-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.load-more-info {
    color: #888888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .community-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .controls-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .sort-controls {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .search-container-enhanced {
        padding: 4px;
    }
    
    .search-input {
        font-size: 1rem;
        padding: 12px 16px;
    }
    
    .search-btn-enhanced {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .community-actions {
        flex-direction: column;
    }
    
    .action-btn {
        justify-content: center;
    }
    
    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .sort-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .sort-select {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .discovery-hero {
        padding: 100px 0 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .filter-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-tab {
        justify-content: center;
    }
    
    .community-card {
        padding: 16px;
    }
    
    .community-avatar {
        width: 50px;
        height: 50px;
    }
    
    .community-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .community-tags {
        gap: 6px;
    }
    
    .tag {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
}
