* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4a90e2;
    --secondary-color: #50c878;
    --dark-bg: #1a1a2e;
    --darker-bg: #0f0f1e;
    --card-bg: #16213e;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --accent: #ff6b6b;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    background: rgba(22, 33, 62, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(80, 200, 120, 0.5);
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: radial-gradient(circle at center, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease;
}

.server-ip {
    background: var(--card-bg);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease;
    flex-wrap: wrap;
}

.ip-label {
    color: var(--text-gray);
    font-weight: 500;
}

.ip-address {
    font-family: 'Courier New', monospace;
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: bold;
    padding: 0.5rem 1rem;
    background: rgba(80, 200, 120, 0.1);
    border-radius: 8px;
}

.copy-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(80, 200, 120, 0.3);
}

.copy-btn:active {
    transform: translateY(0);
}

.server-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    animation: fadeInUp 1.4s ease;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-gray);
    animation: pulse 2s infinite;
}

.status-dot.online {
    background: var(--secondary-color);
    box-shadow: 0 0 10px rgba(80, 200, 120, 0.5);
}

.status-dot.offline {
    background: var(--accent);
}

/* Sections */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.3);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-gray);
}

/* Server Info */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card h3 {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

/* Rules */
.rules-list {
    max-width: 800px;
    margin: 0 auto;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.rule-item:hover {
    transform: translateX(10px);
    border-left-color: var(--secondary-color);
}

.rule-number {
    background: var(--primary-color);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.rule-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.section-description {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.staff-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.staff-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.3);
    border-color: var(--primary-color);
}

.staff-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(74, 144, 226, 0.5));
}

.staff-card h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.staff-role {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.staff-description {
    color: var(--text-gray);
    line-height: 1.6;
}

.faq-section {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(74, 144, 226, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.roadmap-section {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.roadmap-timeline {
    position: relative;
    padding-left: 3rem;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.roadmap-item {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.roadmap-item.active {
    opacity: 1;
}

.roadmap-item.completed {
    opacity: 1;
}

.roadmap-icon {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--card-bg);
    border: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    z-index: 1;
}

.roadmap-item.completed .roadmap-icon {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.roadmap-item.active .roadmap-icon {
    background: var(--primary-color);
    color: white;
    animation: pulse 2s infinite;
}

.roadmap-content {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.roadmap-item:hover .roadmap-content {
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.roadmap-content h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.roadmap-date {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.roadmap-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

.apply-section {
    padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.apply-container {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--darker-bg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.form-message {
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: rgba(80, 200, 120, 0.2);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    display: block;
}

.form-message.error {
    background: rgba(255, 107, 107, 0.2);
    color: var(--accent);
    border: 2px solid var(--accent);
    display: block;
}

/* Discord Section */
.discord-section {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(88, 101, 242, 0.05) 100%);
    border-radius: 20px;
    margin: 2rem auto;
    padding: 4rem 2rem;
}

.discord-container {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.discord-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(88, 101, 242, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discord-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.4);
    border-color: #5865f2;
}

.discord-icon {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discord-icon svg {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 0 10px rgba(88, 101, 242, 0.5));
    transition: transform 0.3s ease;
}

.discord-card:hover .discord-icon svg {
    transform: scale(1.1);
}

.discord-card h3 {
    font-size: 2rem;
    color: #5865f2;
    margin-bottom: 1rem;
}

.discord-description {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.discord-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(88, 101, 242, 0.1);
    border-radius: 15px;
}

.discord-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    color: #5865f2;
    font-size: 2rem;
    font-weight: bold;
}

.discord-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #5865f2;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.4);
}

.discord-join-btn:hover {
    background: #4752c4;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
}

.discord-join-btn svg {
    width: 24px;
    height: 24px;
}

.discord-widget {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    min-height: 300px;
    border: 2px solid rgba(88, 101, 242, 0.3);
}

.widget-loading {
    color: var(--text-gray);
    text-align: center;
    padding: 2rem;
}

.discord-members-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.discord-members-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(88, 101, 242, 0.3);
    margin-bottom: 1rem;
}

.members-online-title {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.2rem;
}

.members-online-count {
    color: #5865f2;
    font-weight: bold;
    font-size: 1.3rem;
}

.discord-member {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(88, 101, 242, 0.05);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.discord-member:hover {
    background: rgba(88, 101, 242, 0.15);
}

.member-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #5865f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.member-info {
    flex: 1;
}

.member-name {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.member-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-color);
}

.status-indicator.online {
    background: var(--secondary-color);
}

.status-indicator.idle {
    background: #faa61a;
}

.status-indicator.dnd {
    background: var(--accent);
}

.discord-widget-error {
    color: var(--accent);
    text-align: center;
    padding: 2rem;
}

/* Vote Section */
.vote-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.vote-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.vote-description {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.vote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
}

.vote-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vote-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.3);
    border-color: #ffc107;
}

.vote-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.5));
}

.vote-card h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.vote-site-name {
    color: #ffc107;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.vote-description-text {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.vote-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #1a1a2e;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
    margin-top: auto;
}

.vote-btn:hover {
    background: linear-gradient(135deg, #ff9800, #ffc107);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
}

.vote-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.vote-btn:hover svg {
    transform: translateX(5px);
}

/* Footer */
footer {
    background: var(--darker-bg);
    text-align: center;
    padding: 2rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    margin: 0.5rem 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(22, 33, 62, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }

    nav {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo-img {
        height: 40px;
        max-width: 150px;
    }

    .hero-logo {
        max-width: 300px;
        margin-bottom: 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero {
        min-height: 70vh;
        padding: 2rem 1rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    section {
        padding: 3rem 1rem;
    }

    section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .server-ip {
        flex-direction: column;
        gap: 1rem;
    }

    .ip-input {
        width: 100%;
        font-size: 1rem;
    }

    .copy-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    .features-grid,
    .info-grid,
    .staff-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card,
    .info-card,
    .staff-card {
        padding: 1.5rem;
    }

    .discord-container {
        max-width: 100%;
    }

    .discord-card {
        padding: 1.5rem;
    }

    .discord-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .vote-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vote-card {
        padding: 1.5rem;
    }

    .roadmap-timeline {
        padding-left: 2rem;
    }

    .roadmap-icon {
        left: -1.75rem;
        width: 2.5rem;
        height: 2.5rem;
    }

    .roadmap-item {
        padding: 1.5rem;
    }

    .milestone-content {
        padding-left: 1.5rem;
    }

    .apply-container,
    .application-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.875rem;
        font-size: 1rem;
    }

    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .rule-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .rule-number {
        width: 40px;
        height: 40px;
        align-self: flex-start;
    }

    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
        max-width: 120px;
    }

    .hero-logo {
        max-width: 200px;
        margin-bottom: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    section h2 {
        font-size: 1.75rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .staff-avatar {
        font-size: 3rem;
    }

    .staff-card h3 {
        font-size: 1.25rem;
    }

    .discord-card h3 {
        font-size: 1.5rem;
    }

    .vote-site-name {
        font-size: 1rem;
    }

    .vote-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }

    .milestone-title {
        font-size: 1.25rem;
    }

    .milestone-date {
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .copy-btn,
    .submit-btn {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    button,
    .copy-btn,
    .vote-btn,
    .submit-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

@media (max-width: 320px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    section {
        padding: 2rem 0.75rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .feature-card,
    .info-card,
    .staff-card,
    .vote-card,
    .application-form {
        padding: 1rem;
    }
}

/* Touch-optimierte Styles für mobile Geräte */
@media (hover: none) and (pointer: coarse) {
    /* Größere Touch-Targets für mobile Geräte */
    button, a, input[type="submit"], .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Verbesserte Touch-Interaktion */
    button:active, a:active {
        transform: scale(0.95);
        transition: transform 0.1s;
    }
    
    /* Verhindere Doppel-Tap-Zoom auf Buttons */
    button, a, input {
        touch-action: manipulation;
    }
    .feature-card:hover,
    .staff-card:hover,
    .rule-item:hover {
        transform: none;
    }

    .nav-links a:hover {
        color: var(--text-light);
        background: rgba(74, 144, 226, 0.1);
    }
}

