* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: rgb(10 10 10 / var(--tw-bg-opacity, 1));
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./Dicor.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

body::after {
    display: none;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

header {
    margin-bottom: 20px;
    z-index: 2;
    text-align: center;
}

.logo {
    height: 60px;
    width: auto;
    filter: brightness(1.1) drop-shadow(0 2px 6px rgba(255, 193, 7, 0.2));
    margin-bottom: 10px;
}

.launch-info {
    margin-top: 10px;
}

.launch-text {
    font-size: 1.4rem;
    color: #ffc107;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgb(250, 180, 50);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 5px;
    padding: 12px 18px;
    min-width: 70px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.countdown-number {
    font-size: 1.7rem;
    font-weight: 700;
    color: rgb(33, 33, 33);
    text-shadow: none;
    margin-bottom: 3px;
}

.countdown-label {
    font-size: 0.8rem;
    color: rgb(33, 33, 33);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.content {
    z-index: 2;
    width: 100%;
    max-width: 500px;
    position: relative;
    margin-top: -10px;
}

.discord-section {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 193, 7, 0.15);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 193, 7, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
}

.discord-section::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 6px;
    height: 6px;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.3);
}

.discord-section::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 4px;
    height: 4px;
    background: rgba(220, 53, 69, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(220, 53, 69, 0.3);
}

.discord-logo {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.discord-logo svg {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(88, 101, 242, 0.3));
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #5865F2, #7289DA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.discord-btn {
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.3);
    margin-bottom: 30px;
    position: relative;
    min-width: 280px;
}

.discord-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(220, 53, 69, 0.1));
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.discord-btn:hover::before {
    opacity: 1;
}

.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(88, 101, 242, 0.4);
    background: linear-gradient(135deg, #4752C4, #5865F2);
}

.discord-btn:active {
    transform: translateY(0);
}

.discord-btn-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.discord-btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.discord-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    text-align: left;
}

.join-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.discord-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.online-count {
    display: flex;
    align-items: center;
    gap: 4px;
}

.online-dot {
    width: 6px;
    height: 6px;
    background: #3ba55d;
    border-radius: 50%;
    animation: pulse-online 2s infinite;
}

@keyframes pulse-online {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 165, 93, 0.7);
    }
    70% {
        box-shadow: 0 0 0 4px rgba(59, 165, 93, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 165, 93, 0);
    }
}

.separator {
    color: rgba(255, 255, 255, 0.6);
}

.total-count {
    display: flex;
    align-items: center;
    gap: 4px;
}

#online-count, #total-count {
    font-weight: 600;
}

.warning {
    background: rgba(46, 61, 223, 0.13);
    border: 1px solid rgba(51, 68, 252, 0.582);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    position: relative;
}

.warning::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 4px;
    height: 4px;
    background: rgba(88, 101, 242, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(88, 101, 242, 0.6);
}

.warning-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e0e0e0;
}

.warning-text strong {
    color: #7289DA;
}

.vpn-section {
    margin-top: 20px;
    text-align: center;
    padding: 25px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 133, 51, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.vpn-text {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 20px;
    font-weight: 500;
}

.vpn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.warp-logo-standalone {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.warp-logo-standalone svg {
    width: 48px;
    height: 48px;
}

.warp-btn {
    background: linear-gradient(135deg, #FF6633, #FF8833);
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(255, 102, 51, 0.3);
}

.warp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 102, 51, 0.4);
    background: linear-gradient(135deg, #FF5722, #FF6633);
}

.warp-btn:active {
    transform: translateY(0);
}

.vpn-instruction {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-top: 15px;
    font-style: italic;
    line-height: 1.4;
}

.vpn-toggle {
    cursor: pointer;
    padding: 15px 20px;
    background: rgba(255, 133, 51, 0.1);
    border: 1px solid rgba(255, 133, 51, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    color: #e0e0e0;
}

.vpn-toggle:hover {
    background: rgba(255, 133, 51, 0.15);
    border-color: rgba(255, 133, 51, 0.4);
}

.vpn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #FF8533;
}

.vpn-arrow.rotated {
    transform: rotate(180deg);
}

.vpn-content-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 0;
}

.vpn-content-wrapper.expanded {
    max-height: 500px;
    margin-top: 20px;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo {
        height: 50px;
        margin-bottom: 8px;
    }
    
    .launch-info {
        margin-top: 8px;
    }
    
    .launch-text {
        font-size: 1.2rem;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        padding: 10px 15px;
        min-width: 60px;
        border-radius: 4px;
    }
    
    .countdown-number {
        font-size: 1.4rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .discord-section {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .discord-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
        min-width: 260px;
    }
    
    .discord-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .join-text {
        font-size: 1rem;
    }
    
    .discord-stats {
        font-size: 0.8rem;
    }
    
    .warning {
        padding: 15px;
        gap: 10px;
    }
    
    .warning-text {
        font-size: 0.9rem;
    }
    
    .container::before,
    .container::after,
    .content::before,
    .content::after {
        display: none;
    }
    
    header {
        margin-bottom: 15px;
    }
    
    .content {
        margin-top: -5px;
    }
    
    .vpn-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .warp-logo-standalone svg {
        width: 40px;
        height: 40px;
    }
    
    .vpn-section {
        margin-top: 10px;
        padding: 20px;
    }
    
    .vpn-text {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .warp-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .vpn-instruction {
        font-size: 0.85rem;
        margin-top: 12px;
    }
    
    .vpn-toggle {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .vpn-arrow {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .discord-section {
        padding: 25px 15px;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    .discord-logo svg {
        width: 60px;
    }
    
    .discord-btn {
        width: 100%;
        justify-content: center;
        min-width: unset;
    }
    
    .discord-btn-content {
        justify-content: center;
    }
    
    .discord-info {
        align-items: center;
    }
    
    .countdown {
        gap: 8px;
    }
    
    .countdown-item {
        padding: 6px 10px;
        min-width: 45px;
        border-radius: 4px;
    }
    
    .countdown-number {
        font-size: 1.1rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
    
    header {
        margin-bottom: 10px;
    }
    
    .content {
        margin-top: 0;
    }
    
    .vpn-section {
        margin-top: 20px;
        padding: 15px;
    }
    
    .warp-btn {
        width: 100%;
        padding: 10px 15px;
    }
    
    .vpn-instruction {
        font-size: 0.8rem;
        margin-top: 10px;
    }
    
    .vpn-toggle {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .vpn-arrow {
        font-size: 1rem;
    }
} 