@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

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

body {
    font-family: 'Orbitron', 'Segoe UI', sans-serif;
    background: #0a0e27;
    min-height: 100vh;
    padding: 60px 20px;
    color: white;
    overflow-x: hidden;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.main-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 80px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.title-gradient {
    background: linear-gradient(45deg, 
        #ff00ff, #00ffff, #ff00ff, #00ffff,
        #ff00ff, #00ffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.5));
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 20px;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(15, 20, 45, 0.95), rgba(20, 25, 50, 0.95));
    border-radius: 25px;
    padding: 30px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

/* SADECE KENARLIKLARDA YANIP SÖNEN RENKLER */
.bonus-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        #ff0080, #ff8c00, #40e0d0, #9d00ff,
        #00ff88, #ff0080, #ffd700, #00d4ff);
    background-size: 400% 400%;
    border-radius: 25px;
    z-index: -1;
    animation: rainbowBorder 4s linear infinite;
    opacity: 0.9;
}

@keyframes rainbowBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.bonus-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(157, 0, 255, 0.2);
}

.brand-badge {
    display: block;
    width: fit-content;
    margin: 0 auto 25px;
    padding: 10px 25px;
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.logo-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border-radius: 20px;
    padding: 40px;
    margin: 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    backdrop-filter: blur(10px);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: none;
}

.logo-container img {
    max-width: 180px;
    max-height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.bonus-amount {
    text-align: center;
    font-size: 1.4rem;
    margin: 30px 0;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(0, 255, 255, 0.6);
}

.cta-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ff00ff, #00ffff, #ff00ff);
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(255, 0, 255, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: buttonGradient 3s ease infinite;
}

@keyframes buttonGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-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;
}

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

.cta-button:hover {
    transform: scale(1.02);
    box-shadow: 
        0 10px 25px rgba(255, 0, 255, 0.4),
        0 0 30px rgba(0, 255, 255, 0.2);
}

.cta-button:active {
    transform: scale(0.98);
}

/* Mobil responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 10px;
    }
    
    .bonus-card {
        padding: 25px;
    }
    
    .bonus-amount {
        font-size: 1.2rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 15px;
    }
}

/* FOOTER STİLLERİ */
.site-footer {
    margin-top: 80px;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(15, 20, 45, 0.95), rgba(20, 25, 50, 0.95));
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, #ff0080, #ff8c00, #40e0d0, #9d00ff) 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
    text-align: center;
}

.telegram-link {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, #0088cc, #00b4d8);
    color: white !important;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 136, 204, 0.4);
}

.telegram-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 136, 204, 0.6);
    background: linear-gradient(90deg, #0099dd, #00c5e9);
    color: white !important;
}

.telegram-link:visited {
    color: white !important;
}

/* Mobil responsive */
@media (max-width: 768px) {
    .site-footer {
        margin-top: 50px;
        padding: 30px 15px;
    }
    
    .footer-content p {
        font-size: 1rem;
    }
    
    .telegram-link {
        font-size: 1rem;
        padding: 10px 25px;
    }
}