/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
}

/* Navbar */
.navbar {
    background-color: #333;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar .logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.navbar .menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.navbar .nav-links a:hover {
    color: #00ff7f;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
        padding: 10px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .navbar .menu-toggle {
        display: block;
    }
}

/* Hero */
.hero {
    background: url('herobg4.png') no-repeat center center/cover;
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Kick Buttons */
.kick-buttons {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kick-btn {
    display: flex;
    align-items: center;
    background-color: #f4f4f4;
    color: #333;
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.kick-btn:hover {
    background-color: #00ff7f;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.kick-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Buttons */
.btn {
    background-color: #00ff7f;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.btn:hover {
    background-color: #009f50;
}

.copy-btn {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #ddd;
    transition: background-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.copy-btn:hover {
    background-color: #555;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* İçerik */
.content-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.content-section ul {
    list-style-type: none;
    padding: 0;
}

.content-section li {
    font-size: 18px;
    margin: 10px 0;
}

.ip-text {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* İletişim */
.contact-section {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

footer p {
    margin: 5px 0;
}
/* Responsive Ayarlar */
@media (max-width: 768px) {
    .btn {
        font-size: 12px;
        padding: 8px 16px;
        border-radius: 25px;
    }

    .copy-btn {
        font-size: 12px;
        padding: 8px 16px;
        border-radius: 25px;
    }

    .kick-btn {
        font-size: 12px;
        padding: 8px 12px;
        border-radius: 25px;
    }

    .kick-icon {
        width: 16px;
        height: 16px;
        margin-right: 8px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }
}
