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

body {
    font-family: Arial, sans-serif;
    background: #1a1a1a;
    color: #fff;
    min-height: 100vh;
    padding: 20px 0;
}

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

.title {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 50px;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.ads-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ad-box {
    width: 100%;
    background: #2d2d2d;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    min-height: 200px;
}

/* VIP Menu */
.vip-menu {
    width: 80px;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    border-right: 2px solid #444;
    position: relative;
}

.vip-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.vip-header i {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.vip-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.more-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
}

.more-text {
    font-size: 0.7rem;
    color: #ff4444;
    margin-bottom: 5px;
    font-weight: bold;
}

.more-section i {
    color: #ff4444;
    font-size: 0.8rem;
}

/* Main Content */
.main-content {
    flex: 1;
    background: #2d2d2d;
    display: flex;
    flex-direction: column;
}

.content-header,
.content-footer {
    background: #1a1a1a;
    padding: 15px 20px;
    text-align: center;
}

.content-header h2,
.content-footer h2 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}

.ad-content {
    display: flex;
    flex: 1;
    padding: 20px;
    gap: 20px;
}

/* Server Info */
.server-info {
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.label {
    color: #ccc;
    font-size: 0.9rem;
}

.value {
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
}

.value.red {
    color: #ff4444;
}

.rating {
    margin-top: 15px;
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 5px;
}

.stars i {
    color: #ffd700;
    font-size: 0.9rem;
}

.comment-count {
    color: #ccc;
    font-size: 0.8rem;
}

/* Banner Section */
.banner-section {
    flex: 1;
    display: flex;
    gap: 15px;
}

.banner-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 225px;
}

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

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.badge {
    position: absolute;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    background: #ff4444;
    color: #fff;
}

.badge.top-left {
    top: 10px;
    left: 10px;
}

.badge.top-right {
    top: 10px;
    right: 10px;
}

.launch-info {
    text-align: center;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.launch-text {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.launch-date {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

.website {
    color: #ccc;
    font-size: 0.8rem;
    font-weight: 500;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.feature-buttons {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.feature-btn {
    background: #ff4444;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.feature-btn:hover {
    background: #ff6666;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    font-weight: bold;
}

.like-btn {
    background: #28a745;
    color: #fff;
}

.like-btn:hover {
    background: #34ce57;
    transform: scale(1.05);
}

.join-btn {
    background: #ffd700;
    color: #000;
}

.join-btn:hover {
    background: #ffed4e;
    transform: scale(1.05);
}

.action-btn i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Expand Section */
.expand-section {
    padding: 15px;
    text-align: center;
    background: #1a1a1a;
}

.expand-btn {
    background: rgba(255, 107, 53, 0.8);
    border: 2px solid #ff6b35;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.expand-btn:hover {
    background: #ff6b35;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.expand-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.expand-btn.expanded i {
    transform: rotate(180deg);
}

/* Full Description */
.ad-full-description {
        max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    transition: max-height 0.5s ease;
    }

.ad-full-description.expanded {
        max-height: 500px;
}

.full-content {
    padding: 30px;
}

.full-content h4 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.full-content p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.server-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature {
    background: rgba(255, 107, 53, 0.2);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .ad-box {
        flex-direction: column;
    }
    
    .vip-menu {
    width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 20px;
        border-right: none;
        border-bottom: 2px solid #444;
    }
    
    .vip-header {
        flex-direction: row;
        margin-bottom: 0;
        gap: 10px;
    }
    
    .more-section {
        flex-direction: row;
        margin-top: 0;
    gap: 10px;
}

    .ad-content {
    flex-direction: column;
        padding: 15px;
    }
    
    .server-info {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    gap: 20px;
}

    .banner-section {
    flex-direction: column;
}

    .action-buttons {
        flex-direction: row;
    width: 100%;
    justify-content: center;
    }
    
    .banner-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.5rem;
    }
    
    .ad-content {
        padding: 10px;
    }
    
    .server-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .banner-image {
        height: 200px;
    }
    
    .feature-buttons {
        position: static;
        margin-top: 10px;
    }
    
    .full-content {
        padding: 20px;
    }
}