:root {
    --primary-color: #ff2d55;
    --secondary-color: #2d3436;
    --background-color: #f8f9fa;
    --text-color: #2d3436;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
}

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

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: var(--card-shadow);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    transform: rotate(-15deg);
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2));
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2d3436;
    text-transform: lowercase;
    letter-spacing: -0.5px;
    display: flex;
    align-items: baseline;
    gap: 1px;
}

.logo-text .text-small {
    font-size: 1.4rem;
    font-weight: 600;
}

.logo-text .highlight {
    color: var(--primary-color);
    margin-left: 2px;
}

/* Hover efekti */
.logo:hover .logo-icon {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.logo:hover .logo-text {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: text-shadow 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #ff2d55 0%, #ff3860 100%);
    color: white;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.search-box input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
}

.search-box button {
    padding: 0 20px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.popular-tags {
    margin-top: 20px;
    text-align: center;
}

.popular-tags span {
    display: inline-block;
    padding: 5px 15px;
    margin: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Categories */
.categories {
    padding: 60px 0;
}

.categories h2 {
    text-align: center;
    margin-bottom: 40px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background-color: white;
    padding: 25px 30px 35px 30px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.category-card h3 {
    margin-bottom: 5px;
}

.oc-rating {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

.special-badge {
    position: relative;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    padding: 5px 14px;
    border-radius: 15px;
    font-weight: 700;
    color: #000;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    white-space: nowrap;
    border: 1px solid rgba(255, 215, 0, 0.5);
    text-shadow: 0 1px 1px rgba(255,255,255,0.5);
}

.special-badge i {
    font-size: 16px;
    margin-right: 5px;
    vertical-align: middle;
    color: inherit;
}

.special-badge span {
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-weight: 800;
}

.special-badge .badge-icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

.category-card:hover .special-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

/* Daily OC */
.daily-oc {
    padding: 60px 0;
    background-color: white;
}

.daily-oc h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
    font-size: 2rem;
}

.daily-oc-slider {
    position: relative;
    padding-bottom: 50px;
}

.daily-oc-slider .swiper-pagination {
    margin-top: 30px;
}

.daily-oc-slider .swiper-button-next,
.daily-oc-slider .swiper-button-prev {
    color: var(--primary-color);
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.daily-oc-slider .swiper-button-next:after,
.daily-oc-slider .swiper-button-prev:after {
    font-size: 20px;
}

.daily-oc-slider .swiper-button-next {
    right: 10px;
}

.daily-oc-slider .swiper-button-prev {
    left: 10px;
}

.daily-oc-slider .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
}

.daily-oc-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

.daily-oc-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--background-color);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    height: 100%;
}

.daily-oc-slider {
    padding: 20px 50px !important;
}

.oc-profile {
    display: flex;
    gap: 25px;
}

.premium-icon {
    font-size: 3.5rem;
    color: #ffd700;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.oc-info {
    flex: 1;
}

.oc-title {
    margin-bottom: 15px;
}

.oc-title h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.location {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.oc-details {
    margin-bottom: 20px;
}

.description {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: italic;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 30px;
    margin-bottom: 20px;
    justify-content: start;
}

.stat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    background: rgba(0,0,0,0.05);
    padding: 8px 15px;
    border-radius: 20px;
}

.stat i {
    color: var(--primary-color);
}

.badges {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 15px;
    justify-content: start;
}

.badges span {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.verified {
    background-color: #00b894;
    color: white;
}

.premium {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #000;
}

.special {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    color: white;
}

.badges i {
    font-size: 0.9rem;
}

.music-control {
    margin-left: auto;
}

.music-toggle {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.music-toggle i {
    transition: all 0.3s ease;
}

.music-toggle.muted i::before {
    content: "\f6a9";  /* fa-volume-mute ikonu */
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 20px 0;
    margin-top: 50px;
}

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

.footer-content p {
    margin: 0;
    color: white;
}

.twitter-link {
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.twitter-link:hover {
    color: #1DA1F2;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-box button {
        padding: 15px;
    }
}
