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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    padding: 20px;
    color: #333;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

html {
    scroll-behavior: smooth;
}

/* Kar yağışı efekti - Daha fazla kar */
.snowflake {
    position: fixed;
    top: -10px;
    color: white;
    font-size: 1em;
    font-family: Arial;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 0 0 15px rgba(255, 255, 255, 0.5);
    animation: snowfall linear infinite;
    pointer-events: none;
    z-index: 1000;
    user-select: none;
}

@keyframes snowfall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translateX(var(--drift));
    }
    100% {
        transform: translateY(100vh) translateX(var(--drift)) rotate(360deg);
        opacity: 0;
    }
}

/* Farklı kar taneleri için ek stiller */
.snowflake:nth-child(odd) {
    animation-duration: 4s;
}

.snowflake:nth-child(even) {
    animation-duration: 6s;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.content::before {
    content: '🎰';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 60px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 50%, #8B0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.main-title::before {
    content: '🎲';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
}

.main-title::after {
    content: '🎲';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
}

.subtitle {
    font-size: 1.25rem;
    color: #8B0000;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 500;
}

.redirect-button {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 50%, #FFD700 100%);
    padding: 25px 60px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.5),
                0 0 20px rgba(255, 215, 0, 0.3),
                inset 0 2px 5px rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 215, 0, 0.6);
    cursor: pointer;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.redirect-button:focus {
    outline: 3px solid rgba(255, 215, 0, 0.8);
    outline-offset: 4px;
}

.redirect-button:focus:not(:focus-visible) {
    outline: none;
}

.redirect-button::before {
    content: '💰';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
}

.redirect-button::after {
    content: '💰';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
}

.redirect-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.7),
                0 0 30px rgba(255, 215, 0, 0.5),
                inset 0 2px 5px rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #FFD700 0%, #DC143C 50%, #8B0000 100%);
    border-color: rgba(255, 215, 0, 0.9);
}

.redirect-button:active {
    transform: translateY(-2px);
}

/* Buton Container */
.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Telegram Butonu */
.telegram-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 136, 204, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.3px;
}

.telegram-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.telegram-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.5);
    background: linear-gradient(135deg, #006699 0%, #0088cc 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.telegram-button:hover .telegram-icon {
    transform: scale(1.1);
}

.telegram-button:active {
    transform: translateY(0);
}

.telegram-button:focus {
    outline: 3px solid rgba(0, 136, 204, 0.8);
    outline-offset: 4px;
}

.telegram-button:focus:not(:focus-visible) {
    outline: none;
}


/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 30px;
    }
    
    .content::before {
        font-size: 40px;
        top: -20px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .main-title::before,
    .main-title::after {
        display: none;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .redirect-button {
        font-size: 1.5rem;
        padding: 20px 40px;
        letter-spacing: 1px;
    }
    
    .redirect-button::before,
    .redirect-button::after {
        font-size: 20px;
    }
    
    .redirect-button::before {
        left: 15px;
    }
    
    .redirect-button::after {
        right: 15px;
    }
    
    .button-container {
        gap: 12px;
    }
    
    .telegram-button {
        font-size: 0.85rem;
        padding: 8px 20px;
        gap: 6px;
    }
    
    .telegram-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 20px;
    }
    
    .content::before {
        font-size: 30px;
        top: -15px;
    }
    
    .main-title {
        font-size: 1.75rem;
    }
    
    .main-title::before,
    .main-title::after {
        display: none;
    }
    
    .subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .redirect-button {
        font-size: 1.25rem;
        padding: 18px 35px;
        letter-spacing: 1px;
    }
    
    .redirect-button::before,
    .redirect-button::after {
        font-size: 18px;
    }
    
    .redirect-button::before {
        left: 10px;
    }
    
    .redirect-button::after {
        right: 10px;
    }
    
    .button-container {
        gap: 10px;
    }
    
    .telegram-button {
        font-size: 0.8rem;
        padding: 7px 18px;
        gap: 5px;
    }
    
    .telegram-icon {
        width: 15px;
        height: 15px;
    }
}

/* SEO ve Erişilebilirlik için görünürlük */
.redirect-button:focus {
    outline: 3px solid #FFD700;
    outline-offset: 4px;
}

/* SEO İçerik Bölümü */
.seo-content {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    text-align: left;
}

.seo-content article {
    max-width: 100%;
}

.seo-content h2 {
    font-size: 1.75rem;
    color: #8B0000;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.seo-content h2:first-child {
    margin-top: 0;
}

.seo-content h3 {
    font-size: 1.35rem;
    color: #DC143C;
    margin-bottom: 12px;
    margin-top: 25px;
    font-weight: 600;
    line-height: 1.4;
}

.seo-content p {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* SEO içerik responsive */
@media (max-width: 768px) {
    .seo-content {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .seo-content h2 {
        font-size: 1.5rem;
        margin-top: 25px;
    }
    
    .seo-content h3 {
        font-size: 1.2rem;
        margin-top: 20px;
    }
    
    .seo-content p {
        font-size: 0.95rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .seo-content {
        margin-top: 30px;
        padding-top: 25px;
    }
    
    .seo-content h2 {
        font-size: 1.3rem;
        margin-top: 20px;
    }
    
    .seo-content h3 {
        font-size: 1.1rem;
        margin-top: 18px;
    }
    
    .seo-content p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

/* FAQ Bölümü Stilleri */
.faq-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    text-align: left;
}

.faq-section h2 {
    font-size: 1.75rem;
    color: #8B0000;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.2);
}

.faq-question {
    font-size: 1.2rem;
    color: #8B0000;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
}

.faq-question::before {
    content: '❓';
    margin-right: 8px;
    font-size: 1.1rem;
}

.faq-answer {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    margin-top: 10px;
}

.faq-answer::before {
    content: '💡';
    margin-right: 8px;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-section {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .faq-section h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .faq-item {
        padding: 15px;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        margin-top: 30px;
        padding-top: 25px;
    }
    
    .faq-section h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .faq-item {
        padding: 12px;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Breadcrumb Navigation */
.breadcrumb {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #8B0000;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: #666;
}

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

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

.breadcrumb span {
    color: #333;
    font-weight: 500;
}

/* Breadcrumb Responsive */
@media (max-width: 768px) {
    .breadcrumb {
        top: 10px;
        left: 10px;
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 20px;
        width: 100%;
        border-radius: 0;
    }
    
    .breadcrumb ol {
        flex-wrap: wrap;
        justify-content: center;
    }
}
