* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rajdhani', sans-serif;
}

body {
    background: #050505;
    color: #e5e5e5;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(0,0,0,0.8);
    border-bottom: 1px solid #1f2933;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #22c55e;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #9ca3af;
    text-transform: uppercase;
    font-size: 0.9rem;
}

nav a:hover {
    color: #22c55e;
}

/* Hero */
.hero {
    height: 90vh;
    background: url("images/bg.jpg") center/cover no-repeat;
    position: relative;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.hero .content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1;
}

.hero span {
    color: #22c55e;
}

.hero p {
    margin: 20px 0;
    color: #9ca3af;
}

.hero button {
    width: 200px;
    padding: 14px;
    background: transparent;
    border: 2px solid #22c55e;
    color: #22c55e;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.hero button:hover {
    background: #22c55e;
    color: #050505;
}

/* Stats */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 50px;
    background: #020202;
}

.stats h2 {
    color: #22c55e;
    font-size: 2.5rem;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 60px 40px;
}

.feature {
    background: #020202;
    padding: 25px;
    border-left: 4px solid #22c55e;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    color: #6b7280;
}
nav a.active {
    color: #22c55e;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to bottom, #020202, #050505);
}

.page-header h1 {
    font-size: 3rem;
    color: #22c55e;
}

.page-header p {
    color: #9ca3af;
    margin-top: 10px;
}

/* Rules */
.rules {
    max-width: 900px;
    margin: auto;
    padding: 60px 20px;
}

.rule {
    background: #020202;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #22c55e;
}

.rule h3 {
    margin-bottom: 10px;
}


/*status*/

.server-status {
    padding: 60px 40px;
    text-align: center;
    background: #050505;
}

.server-status h2 {
    color: #22c55e;
    margin-bottom: 30px;
}

.status-card {
    max-width: 500px;
    margin: auto;
    background: #020202;
    padding: 20px;
    display: flex;
    gap: 15px;
    border-left: 4px solid #22c55e;
    border-radius: 8px;
}

.status-card.offline {
    border-left-color: #ef4444;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 10px #22c55e;
}

.status-card.offline .dot {
    background: #ef4444;
    box-shadow: 0 0 10px #ef4444;
}

.status-card a {
    color: #22c55e;
    text-decoration: none;
    font-weight: bold;
}

/*news*/

.news {
    padding: 60px 40px;
    background: #050505;
    color: #e5e5e5;
    text-align: center;
}

.news h2 {
    font-size: 2.5rem;
    color: #22c55e;
    margin-bottom: 40px;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.news-card {
    background: #020202;
    padding: 25px;
    border-left: 4px solid #22c55e;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.news-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.news-card p {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #9ca3af;
}

.news-card .date {
    display: block;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #64748b;
}

/*streamer*/

.streamers {
    padding: 60px 60px;
    background: #050505;
    color: #e5e5e5;
    text-align: center;
}

.streamers h2 {
    font-size: 2.5rem;
    color: #22c55e;
    margin-bottom: 40px;
}

.streamer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.streamer-card {
    background: #020202;
    padding: 25px;
    border-left: 4px solid #22c55e;
    transition: transform 0.3s, box-shadow 0.3s;
}

.streamer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.streamer-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.streamer-card p {
    color: #9ca3af;
    margin-bottom: 12px;
}

.streamer-card a {
    display: inline-block;
    padding: 10px 20px;
    background: #22c55e;
    color: #050505;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.streamer-card a:hover {
    background: #16a34a;
}

.streamer-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid #22c55e;
}

/*impressum*/
.impressum {
    padding: 60px 40px;
    background: #050505;
    color: #e5e5e5;
    text-align: left;
}

.impressum h2 {
    font-size: 2.5rem;
    color: #22c55e;
    margin-bottom: 30px;
    text-align: center;
}

.impressum-content {
    max-width: 800px;
    margin: auto;
    background: #020202;
    padding: 30px;
    border-left: 4px solid #22c55e;
    border-radius: 8px;
}

.impressum-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.impressum-content a {
    color: #22c55e;
    text-decoration: none;
}

.impressum-content a:hover {
    text-decoration: underline;
}

/* Team */

.team {
    padding: 60px 40px;
    background: #050505;
    color: #e5e5e5;
    text-align: center;
}

.team h2 {
    font-size: 2.5rem;
    color: #22c55e;
    margin-bottom: 40px;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.team-card {
    background: #020202;
    padding: 20px;
    border-left: 4px solid #22c55e;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

.team-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #22c55e;
    margin-bottom: 15px;
}

.team-card h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.team-card p {
    color: #9ca3af;
    font-size: 0.95rem;
}