@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #161d22; /* LimeBet koyu arka plan */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCI+CjxyZWN0IHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgZmlsbD0iIzE2MWQyMiI+PC9yZWN0Pgo8Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSIxIiBmaWxsPSIjYWNlNzAwIiBmaWxsLW9wYWNpdHk9IjAuMSI+PC9jaXJjbGU+Cjwvc3ZnPg==');
}
.promo-title {
    font-size: 1.2em;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.container {
    background-color: #1e272e; /* LimeBet container arka planı */
    border-radius: 15px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(172, 231, 0, 0.3); /* LimeBet yeşil border */
    position: relative;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ace700, #98cc00, #ace700);
    background-size: 200% 100%;
    animation: gradientBorder 3s linear infinite;
}

@keyframes gradientBorder {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

.logo-container {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ace700; /* LimeBet yeşil */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 900;
    letter-spacing: -0.5px;
}

p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.promo-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #ace700;
    font-weight: 700;
    font-size: 1.2rem;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    background-color: rgba(172, 231, 0, 0.1);
    border: 1px solid rgba(172, 231, 0, 0.3);
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.benefit-item i {
    color: #ace700;
    margin-right: 6px;
}

.telegram-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ace700; /* LimeBet yeşil */
    color: #1a1a1a; /* Koyu metin rengi */
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(172, 231, 0, 0.3);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: scale(0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.telegram-button.active {
    opacity: 1;
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(172, 231, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(172, 231, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(172, 231, 0, 0);
    }
}

.telegram-button.clicked {
    transform: scale(0.95);
    background-color: #98cc00;
    box-shadow: 0 2px 8px rgba(172, 231, 0, 0.4);
}

.telegram-button:hover {
    background-color: #c5ff00;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(172, 231, 0, 0.7);
}

.telegram-button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(172, 231, 0, 0.6);
}

.telegram-button i {
    margin-right: 10px;
    font-size: 1.5rem;
    vertical-align: middle;
}

.instagram-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: scale(0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.instagram-button.active {
    opacity: 1;
    transform: scale(1);
}

.instagram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(225, 48, 108, 0.7);
}

.instagram-button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(225, 48, 108, 0.6);
}

.instagram-button i {
    margin-right: 10px;
    font-size: 1.5rem;
    vertical-align: middle;
}

.footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Mobil Uyarlama */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
        width: 95%;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .telegram-button,
    .instagram-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .logo {
        width: 150px;
    }
    
    .benefits {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .benefit-item {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .promo-text {
        font-size: 1rem;
    }
} 