/* Mobil Görünüm CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--background-color, #1a1a1a);
    color: #fff;
    min-height: 100vh;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}

/* VIP Section */
.vip-section {
    background: linear-gradient(135deg, var(--secondary-color, #2D5016) 0%, #1a3d0a 100%);
    padding: 20px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.vip-banner {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--primary-color, #FFD700);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: #000;
}

.vip-icon {
    font-size: 32px;
}

.vip-text h2 {
    font-size: 20px;
    margin-bottom: 5px;
}

.vip-text p {
    font-size: 14px;
    opacity: 0.8;
}

.vip-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.vip-card {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vip-card.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.vip-logo {
    margin-bottom: 15px;
}

.vip-logo img {
    max-width: 100%;
    max-height: 120px;
    height: auto;
    object-fit: contain;
    background: transparent;
}

.vip-bonus {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color, #FFD700);
    margin-bottom: 15px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-color, #FFD700);
    width: 25px;
    border-radius: 5px;
}

/* Search Section */
.search-section {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.search-bar {
    position: relative;
    margin-bottom: 15px;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #999;
}

.search-bar input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
}

.search-bar input::placeholder {
    color: #999;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active {
    background: var(--primary-color, #FFD700);
    color: #000;
    border-color: var(--primary-color, #FFD700);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Sites Section */
.sites-section {
    padding: 0 20px 40px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.sites-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.site-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.site-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.site-logo {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    background: transparent;
}

.site-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.site-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #fff;
    display: block;
    width: 100%;
}

.site-description {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
    line-height: 1.5;
    display: block;
    width: 100%;
    white-space: pre-line;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.site-bonus {
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-color, #FFD700);
    display: block;
    width: 100%;
    margin-top: 5px;
}

.site-action {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Bonus Button */
.btn-bonus {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 12px 20px;
    background: var(--primary-color, #FFD700);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-bonus:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-bonus span {
    font-size: 16px;
}

/* Pop-up Form */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    animation: fadeIn 0.3s;
}

.popup-overlay .popup-content {
    max-width: 480px;
    width: 100%;
}

.popup-content {
    background: var(--background-color, #1a1a1a);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    border: 2px solid var(--primary-color, #FFD700);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.popup-content h2 {
    margin-bottom: 10px;
    color: var(--primary-color, #FFD700);
}

.popup-content > p {
    margin-bottom: 20px;
    color: #ccc;
    line-height: 1.6;
}

.popup-content .form-group {
    margin-bottom: 20px;
}

.popup-content label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 500;
}

.popup-content input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
}

.popup-content input::placeholder {
    color: #999;
}

.popup-content input:focus {
    outline: none;
    border-color: var(--primary-color, #FFD700);
    background: rgba(255, 255, 255, 0.15);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary-color, #FFD700);
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.form-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 480px) {
    .vip-banner {
        flex-direction: column;
        text-align: center;
    }
}

