/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #1a1a1a;
}

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

/* Header */
.header {
    background: #2d2d2d;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border-bottom: 2px solid #444;
}

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

.logo {
    text-decoration: none;
    color: inherit;
}

.logo:hover {
    text-decoration: none;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
}

.logo p {
    text-decoration: none;
}

/* Breadcrumb Styles */
.breadcrumb a {
    text-decoration: none;
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    text-decoration: none;
    color: #FF6B35;
}

.breadcrumb-nav a {
    text-decoration: none;
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    text-decoration: none;
    color: #FF6B35;
}

.logo h1 i {
    color: #FF6B35;
    font-size: 1.5rem;
}

.logo p {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #e0e0e0;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
    color: #FF6B35;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: #2d2d2d;
    color: white;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 2px solid #444;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.stat i {
    font-size: 1.5rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: #FF6B35;
    color: white;
}

.btn-primary:hover {
    background: #E55A2B;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #545b62;
    transform: translateY(-2px);
}

.btn-tertiary {
    background: #28a745;
    color: white;
}

.btn-tertiary:hover {
    background: #218838;
    transform: translateY(-2px);
}

/* New Servers Section */
.new-servers {
    background: #2d2d2d;
    padding: 4rem 0;
    border: 1px solid #444;
}

.new-servers h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.server-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #1e7e34;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Servers Grid */
.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.server-card {
    background: #3d3d3d;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #555;
}

.server-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.server-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.server-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.server-rank {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    font-weight: bold;
    min-width: 40px;
    text-align: center;
}

.server-info {
    padding: 1.5rem;
}

.server-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.server-description {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.server-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #ccc;
}

.server-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.server-actions {
    display: flex;
    gap: 0.5rem;
}

.server-actions .btn {
    flex: 1;
    text-align: center;
}

/* Top Servers Section */
.top-servers {
    padding: 4rem 0;
    background: #2d2d2d;
    border: 1px solid #444;
}

.top-servers h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #2d2d2d;
    border: 1px solid #444;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: #3d3d3d;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid #555;
}

.feature i {
    font-size: 3rem;
    color: #FF6B35;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

/* Main Content */
.main {
    min-height: 60vh;
    padding: 2rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.page-header p {
    font-size: 1.1rem;
    color: #ccc;
}

/* Search and Filter */
.search-filter {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    border: 1px solid #444;
}

.search-form {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.search-input input {
    width: 100%;
    padding: 0.8rem 3rem 0.8rem 1rem;
    border: 2px solid #666;
    border-radius: 5px;
    font-size: 1rem;
    background: #444;
    color: #e0e0e0;
}

.search-input button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
}

.filter-select select {
    padding: 0.8rem 1rem;
    border: 2px solid #666;
    border-radius: 5px;
    font-size: 1rem;
    background: #444;
    color: #e0e0e0;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-info {
    font-weight: 500;
    color: #ccc;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: #ccc;
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #666;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Server Detail */
.server-detail {
    background: #2d2d2d;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    border: 1px solid #444;
}

.server-header {
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

.server-header .server-image {
    width: 200px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
}

.server-header .server-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.server-header .server-info {
    flex: 1;
}

.server-header h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

/* Vote Section */
.vote-section {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    text-align: center;
    border: 1px solid #444;
}

.vote-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.vote-info {
    margin-bottom: 2rem;
    color: #ccc;
}

.vote-form {
    display: inline-block;
}

/* Comments Section */
.comments-section {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid #444;
}

.comments-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.add-comment {
    background: #3d3d3d;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid #555;
}

.add-comment h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.comment-form {
    display: grid;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #666;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    background: #444;
    color: #e0e0e0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
}

.comments-list {
    display: grid;
    gap: 1rem;
}

.comment {
    background: #3d3d3d;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #FF6B35;
    border: 1px solid #555;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.comment-header h4 {
    color: #ffffff;
    font-size: 1.1rem;
}

.comment-date {
    color: #666;
    font-size: 0.9rem;
}

.comment-content {
    color: #555;
    line-height: 1.6;
}

.no-comments {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.no-comments i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ccc;
}

/* Vote Selection */
.vote-selection {
    text-align: center;
}

.vote-selection h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.vote-selection p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #4CAF50;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #4CAF50;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Page Header */
.page-header {
    background: #2d2d2d;
    color: white;
    padding: 3rem 0;
    border-bottom: 2px solid #444;
    text-align: center;
}

.page-header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.next-launch-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 25px;
    display: inline-block;
    margin: 1rem 0;
    font-size: 1.1rem;
}

/* Server Badges */
.server-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    background: #28a745;
}

.server-badge.upcoming {
    background: #ffc107;
    color: #212529;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1rem;
}

.page-info {
    font-weight: 500;
    color: #666;
}

/* Servers Section */
.servers-section {
    padding: 3rem 0;
}

/* No Servers */
.no-servers {
    text-align: center;
    padding: 3rem 0;
    color: #666;
}

.no-servers h3 {
    margin: 1rem 0;
    color: #ffffff;
}

/* Server Detail Section */
.server-detail-section {
    padding: 2rem 0;
}

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

.server-detail-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid #444;
}

.server-image {
    flex: 0 0 300px;
}

.server-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.server-info {
    flex: 1;
}

.server-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.server-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 2rem;
}

.server-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #3d3d3d;
    border-radius: 25px;
    font-weight: 500;
    color: #ffffff;
    border: 1px solid #555;
}

.stat-item i {
    color: #FF6B35;
}

.server-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Server Details */
.server-details {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    border: 1px solid #444;
}

.server-details h2 {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

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

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #3d3d3d;
    border-radius: 8px;
    border-left: 4px solid #FF6B35;
    border: 1px solid #555;
}

.detail-item strong {
    color: #ffffff;
}

.detail-item span {
    color: #ccc;
    font-weight: 500;
}

/* Comments Section */
.comments-section {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid #444;
}

.comments-section h2 {
    margin-bottom: 2rem;
    color: #ffffff;
}

.add-comment-form {
    background: #3d3d3d;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid #555;
}

.add-comment-form h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #666;
    border-radius: 5px;
    font-size: 1rem;
    background: #444;
    color: #e0e0e0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 2px rgba(255,107,53,0.25);
}

.comments-list {
    margin-top: 2rem;
}

.comment-item {
    padding: 1.5rem;
    border-bottom: 1px solid #555;
    margin-bottom: 1rem;
    background: #3d3d3d;
    border-radius: 8px;
    border: 1px solid #555;
}

.comment-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-header strong {
    color: #ffffff;
    font-size: 1.1rem;
}

.comment-date {
    color: #666;
    font-size: 0.9rem;
}

.comment-content {
    color: #555;
    line-height: 1.6;
}

.no-comments {
    text-align: center;
    padding: 3rem;
    color: #666;
}

/* Breadcrumb Section */
.breadcrumb-section {
    background: #2d2d2d;
    padding: 1rem 0;
    border-bottom: 1px solid #444;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #FF6B35;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #ccc;
}

/* Alert Styles */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .server-detail-header {
        flex-direction: column;
        text-align: center;
    }
    
    .server-image {
        flex: none;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .server-info h1 {
        font-size: 2rem;
    }
    
    .server-stats {
        justify-content: center;
    }
    
    .server-actions {
        justify-content: center;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .nav ul {
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .servers-grid {
        grid-template-columns: 1fr;
    }
    
    .server-header {
        flex-direction: column;
        text-align: center;
    }
    
    .server-header .server-image {
        width: 100%;
        height: 200px;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-input {
        min-width: auto;
    }
    
    .pagination {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
