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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #28060B 0%, #1A0000 50%, #0C0000 100%);
    color: white;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(40, 6, 11, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 0, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(12, 0, 0, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(1deg); }
    66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 2rem 8rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5)); }
    to { filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8)); }
}

.subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s ease-in-out infinite;
}

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

.description {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.4;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    hyphens: auto;
}

.social-links {
    margin-bottom: 3rem;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.instagram-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.instagram-link:hover::before {
    left: 100%;
}

.instagram-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.instagram-link svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.instagram-link:hover svg {
    transform: rotate(15deg) scale(1.1);
}

.completion {
    margin-top: 2rem;
}

.completion-text {
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Enhanced Mobile Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 1.5rem;
    }
    
    .title {
        font-size: clamp(2.5rem, 7vw, 5rem);
    }
    
    .subtitle {
        font-size: clamp(1.25rem, 3.5vw, 2rem);
    }
    
    .countdown-with-date {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .title {
        font-size: clamp(2rem, 6vw, 4rem);
        margin-bottom: 0.75rem;
    }
    
    .subtitle {
        font-size: clamp(1rem, 3vw, 1.75rem);
        margin-bottom: 1rem;
    }
    
    .description {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
        margin-bottom: 2rem;
        max-width: 95%;
    }
    
    .countdown-with-date {
        flex-direction: column;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .countdown-box {
        padding: 1.5rem;
        width: 100%;
        max-width: 350px;
    }
    
    .date-box {
        padding: 1.5rem 2rem;
        width: 100%;
        max-width: 350px;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 65px;
    }
    
    .countdown-number {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .instagram-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .social-links {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.75rem;
    }
    
    .title {
        font-size: clamp(1.75rem, 5vw, 3rem);
        margin-bottom: 0.5rem;
    }
    
    .subtitle {
        font-size: clamp(0.875rem, 2.5vw, 1.5rem);
        margin-bottom: 0.75rem;
    }
    
    .description {
        font-size: clamp(0.75rem, 2.5vw, 0.9rem);
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .countdown-with-date {
        flex-direction: column;
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .countdown-box {
        padding: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .date-box {
        padding: 1rem 1.25rem;
        width: 100%;
        max-width: 300px;
    }
    
    .countdown {
        gap: 0.75rem;
    }
    
    .countdown-item {
        min-width: 55px;
    }
    
    .countdown-number {
        font-size: clamp(1rem, 3.5vw, 1.5rem);
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
    
    .completion-text {
        font-size: clamp(0.7rem, 2vw, 0.8rem) !important;
    }
    
    .instagram-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        gap: 0.4rem;
    }
    
    .instagram-link svg {
        width: 20px;
        height: 20px;
    }
    
    .social-links {
        margin-bottom: 1rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0.5rem;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 45px;
    }
    
    .countdown-number {
        font-size: clamp(0.875rem, 3vw, 1.25rem);
    }
    
    .countdown-label {
        font-size: 0.6rem;
    }
    
    .date-box {
        padding: 0.75rem 1rem;
    }
    
    .completion-text {
        font-size: 0.7rem !important;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .countdown-with-date {
        flex-direction: row !important;
        gap: 1.5rem;
    }
    
    .countdown-box {
        width: auto;
        max-width: none;
        padding: 1.5rem;
    }
    
    .date-box {
        width: auto;
        max-width: none;
        padding: 1.5rem 2rem;
    }
}

/* Countdown Styles */
.countdown-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.countdown-with-date {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.countdown-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.25);
}

.date-box {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(45deg, #ffffff, #f5f5f5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    animation: pulse 2s ease-in-out infinite;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.9);
}

.event-date {
    text-align: center;
}

.social-links {
    margin-bottom: 2rem;
}

.event-live {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 1s ease-in-out infinite alternate;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive Boxes */
@media (max-width: 768px) {
    .countdown-with-date {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .countdown-box {
        padding: 1.5rem;
        width: 100%;
        max-width: 400px;
    }
    
    .date-box {
        padding: 1.5rem 2rem;
        width: 100%;
        max-width: 400px;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 70px;
    }
    
    .countdown-number {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .countdown-with-date {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .countdown-box {
        padding: 1rem;
    }
    
    .date-box {
        padding: 1rem 1.5rem;
    }
    
    .countdown {
        gap: 0.75rem;
    }
    
    .countdown-item {
        min-width: 60px;
    }
}

/* Desktop Yan Yana Görünüm İçin */
@media (min-width: 769px) {
    .countdown-with-date {
        flex-direction: row !important;
        gap: 2rem;
    }
    
    .countdown-box {
        width: auto;
        max-width: none;
    }
    
    .date-box {
        width: auto;
        max-width: none;
    }
}

/* Footer Styles */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
    z-index: 10;
}

.footer-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-text {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.developer {
    font-weight: 600;
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.footer-copyright {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

/* Enhanced Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 0.75rem 1rem;
    }
    
    .footer-text {
        font-size: 0.875rem;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 0.5rem;
    }
    
    .footer-text {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .footer-copyright {
        font-size: 0.7rem;
        margin-bottom: 0;
    }
}

@media (max-width: 320px) {
    .footer {
        padding: 0.4rem;
    }
    
    .footer-text {
        font-size: 0.75rem;
    }
    
    .footer-copyright {
        font-size: 0.65rem;
    }
}

/* Loading animation */
.title::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: 1em;
    background: #ffffff;
    margin-left: 0.1em;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}
