/* Custom Styles */
* {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
}

/* Hypixel Button Styles */
.hypixel-button {
    background-color: #FF6B35;
    color: white;
    font-weight: bold;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.hypixel-button:hover {
    background-color: #E55A2B;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hypixel-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hypixel-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Hypixel Nav Button */
.hypixel-nav-button {
    border: 1px solid #FF6B35;
    color: #FF6B35;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.2s;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
}

.hypixel-nav-button:hover {
    background-color: #FF6B35;
    color: white;
}

.hypixel-nav-button.bg-hypixel-orange {
    border-color: #FF6B35;
    background-color: #FF6B35 !important;
    color: white !important;
}

/* Dropdown Menu */
.has-dropdown:hover .dropdown-menu {
    display: block;
}

/* Utility Classes */
.text-shadow-gold {
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.glow-gold {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

/* Article Content Styles */
.prose {
    color: #374151;
    line-height: 1.75;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.prose * {
    max-width: 100%;
    box-sizing: border-box;
}


.prose h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.prose h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.prose p {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #374151;
    line-height: 1.75;
}

.prose ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.prose ul li {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: #374151;
}

.prose ul.list-disc {
    list-style-type: disc;
}

.prose ul.list-inside li {
    margin-left: 0;
}

.prose ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.prose ol li {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: #374151;
}

.prose strong {
    font-weight: 700;
    color: #111827;
}

.prose a {
    color: #FF6B35;
    text-decoration: underline;
}

.prose a:hover {
    color: #E55A2B;
}

/* Header Banner - Tüm sayfalarda tutarlı boyutlar */
.header-banner {
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: 240px;
}

.header-logo {
    height: 64px;
}

@media (min-width: 768px) {
    .header-logo {
        height: 96px;
    }
}

@media (min-width: 1024px) {
    .header-logo {
        height: 112px;
    }
}

@media (min-width: 1280px) {
    .header-logo {
        height: 128px;
    }
}

/* Article Section Styles */
article section {
    scroll-margin-top: 2rem;
}

/* Store Tab Navigation Styles */
.store-tab {
    position: relative;
    transition: all 0.2s ease-in-out;
}

.store-tab:hover {
    color: #FF6B35;
}

.store-tab-active {
    color: #FF6B35;
    border-bottom-color: #FF6B35;
}


