* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #0b0b0b;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M10 10 H 90 V 90 H 10 Z' fill='none' stroke='rgba(255,255,255,0.02)' stroke-width='2'/%3E%3Cpath d='M30 30 H 70 V 70 H 30 Z' fill='none' stroke='rgba(255,255,255,0.02)' stroke-width='2'/%3E%3Cpath d='M0 50 H 100 M 50 0 V 100' fill='none' stroke='rgba(255,255,255,0.01)' stroke-width='1'/%3E%3C/svg%3E");
    color: #fff;
}

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

header {
    background-color: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    color: #1bd96a;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

header h1::before {
    content: '⚙️';
    font-size: 24px;
}

nav a, nav span {
    color: #ccc;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #1bd96a;
}

nav a.login-btn {
    background: #1bd96a;
    color: #000;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
    margin-left: 10px;
}

nav a.login-btn:hover {
    background: #16b558;
    color: #000;
}

.hero {
    text-align: center;
    padding: 120px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
}

.hero-logo {
    width: 120px;
    height: 120px;
    background: #1bd96a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 60px;
    box-shadow: 0 0 30px rgba(27, 217, 106, 0.3);
}

.hero h2 {
    font-size: 64px;
    margin-bottom: 15px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.hero h2 span {
    color: #1bd96a;
    display: block;
}

.hero p {
    font-size: 20px;
    color: #aaa;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero .btn-primary {
    background: #1bd96a;
    color: #000;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.2s, background 0.2s;
}

.hero .btn-secondary {
    background: #252525;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    border: 1px solid #333;
    transition: background 0.2s;
}

.hero .btn-primary:hover {
    transform: scale(1.05);
    background: #16b558;
}

.hero .btn-secondary:hover {
    background: #333;
}

.mod-slider-container {
    position: relative;
    padding: 40px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.mod-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px;
    scrollbar-width: none;
}

.mod-slider::-webkit-scrollbar {
    display: none;
}

.mod-card {
    min-width: 300px;
    background: #161616;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    border: 1px solid #222;
}

.mod-card:hover {
    transform: translateY(-8px);
    border-color: #1bd96a;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.mod-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.mod-card h3 {
    padding: 15px;
    font-size: 20px;
}

.mod-card p {
    padding: 0 15px 15px;
    color: #aaa;
    font-size: 14px;
}

.btn {
    display: block;
    background: #1bd96a;
    color: #000;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
    margin: 15px;
    border-radius: 5px;
    transition: background 0.2s;
}

.btn:hover {
    background: #16b558;
}

.slider-btn {
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 30px;
    padding: 20px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: rgba(27, 217, 106, 0.2);
}

footer {
    text-align: center;
    padding: 40px;
    background: #111;
    margin-top: 60px;
    border-top: 1px solid #333;
}

/* Keşfet Sayfası Düzeni */
.discover-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin-top: 40px;
}

.sidebar {
    background: rgba(22, 22, 22, 0.6);
    border: 1px solid #222;
    border-radius: 12px;
    padding: 20px;
    height: fit-content;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-link {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 6px;
    transition: all 0.2s;
}

.filter-link:hover, .filter-link.active {
    background: rgba(27, 217, 106, 0.1);
    color: #1bd96a;
}

.mod-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mod-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 20px;
    background: #161616;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 15px;
    align-items: center;
    transition: border-color 0.2s;
}

.mod-item:hover {
    border-color: #333;
}

.mod-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.mod-item-info h3 {
    margin-bottom: 5px;
}

.mod-item-info h3 a {
    color: #1bd96a;
    text-decoration: none;
}

.mod-item-info p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 10px;
}

.badges {
    display: flex;
    gap: 8px;
}

.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    background: #252525;
    color: #888;
}

.badge.loader { background: rgba(27, 217, 106, 0.1); color: #1bd96a; }
.badge.version { background: rgba(0, 150, 255, 0.1); color: #0096ff; }
.badge.env { background: rgba(255, 150, 0, 0.1); color: #ff9600; }

.mod-item-stats {
    text-align: right;
    color: #666;
    font-size: 13px;
}

.search-container {
    margin-bottom: 30px;
}

.search-bar {
    width: 100%;
    padding: 15px 20px;
    background: #161616;
    border: 1px solid #222;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
}

.search-bar:focus {
    outline: none;
    border-color: #1bd96a;
}
