* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background-color: black;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Üstte kayan banner */
.scrolling-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: #CBE455;
    color: black;
    padding: 10px 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-content {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    font-family: 'ABCLaicaMonoBookItalic', sans-serif;
    /* font-family: 'ABCLaicaMono', sans-serif;  Genel bir yazı tipine geri dönüş */ 
}

.banner-content span {
    display: inline-block;
    animation: scroll-left 60s linear infinite;
    animation-delay: 0s;
    font-weight: thin;
    font-size: 12px;
    white-space: nowrap;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.close-banner {
    background: none;
    border: none;
    color: black;
    font-weight: bold;
    cursor: pointer;
    padding: 0 20px;
    font-family: inherit;
}

/* Ana içerik alanı */
.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 60px;
    padding-bottom: 60px;
}

.logo-container {
    text-align: center;
}

.company-logo-img {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.company-logo {
    font-size: 4rem;
    font-weight: bold;
    color: black;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 20px;
}



/* Subscribe popup */
.subscribe-popup {
    position: fixed;
    bottom: 40px;
    right: 20px;
    background-color: #95ACDA;
    color: white;
    padding: 25px;
    max-width: 380px;
    z-index: 998;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border: none;
}



.popup-header {
    position: relative;
    margin: 0;
    padding: 0 0 15px 0;
    z-index: 1;
}


.scrolling-border-top, .scrolling-border-bottom {
    overflow: hidden;
    white-space: nowrap;
    margin: 0;
    display: inline-block;
    position: relative;
    z-index: 5;
}

.scrolling-border-top span, .scrolling-border-bottom span {
    display: inline-block;
    animation: scroll-left 40s linear infinite;
    animation-delay: 0s;
    font-size: 12px;
    color: black;
    font-weight: bold;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.close-popup {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #95ACDA;
    border: none;
    color: black;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
    padding: 2px 8px;
}

.popup-content p {
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    color: black;
    font-weight: normal;
    font-family: 'ABCWalterAlte', sans-serif;
}

.subscribe-btn {
    background-color: black;
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-family: 'ABCWalterAlte', sans-serif;
    font-weight: bold;
    font-size: 10px;
    margin: 0 auto;
    display: block;
    text-transform: uppercase;
    border-radius: 0;
    transition: background-color 0.3s;
}

.subscribe-btn:hover {
    background-color: #333;
}

/* Sosyal medya ikonları */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.social-icon {
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
}

.social-icon:hover {
    color: #95ACDA;
    background-color: white;
    transform: scale(1.1);
}



/* Animasyonlar */
@keyframes scroll-left {
    0% {
        transform: translate3d(0%, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes scroll-right {
    0% {
        transform: translate3d(0%, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .company-logo-img {
        max-width: 200px;
    }
    
    .company-logo {
        font-size: 2.5rem;
    }
    
    .subscribe-popup {
        bottom: 40px;
        left: 20px !important;
        right: 20px !important;
        transform: none !important;
        max-width: none;
        width: calc(100% - 40px);
        padding: 16px;
        border-radius: 0;
        border: none;
    }
    
    .banner-content span {
        font-size: 12px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        font-size: 18px;
        width: 30px;
        height: 30px;
    }
    
    .subscribe-btn {
        font-family: 'ABCWalterAlte', sans-serif;
        font-weight: bold;
    }
    
    .main-content {
        padding-top: 15px;
        padding-bottom: 50px;
        align-items: center;
        justify-content: center;
    }
    
    .logo-container {
        width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .company-logo-img {
        max-width: 150px;
    }
    
    .company-logo {
        font-size: 2rem;
    }
    
    .subscribe-popup {
        bottom: 30px;
        left: 15px !important;
        right: 15px !important;
        transform: none !important;
        max-width: none;
        width: calc(100% - 30px);
        padding: 12px;
        border-radius: 0;
        border: none;
    }
    
    .popup-content p {
        font-size: 12px;
        font-family: 'ABCWalterAlte', sans-serif;
        font-weight: normal;
    }
    
    .banner-content span {
        font-size: 10px;
    }
    
    .social-icons {
        gap: 8px;
    }
    
    .social-icon {
        font-size: 16px;
        width: 28px;
        height: 28px;
    }
    
    .subscribe-btn {
        font-family: 'ABCWalterAlte', sans-serif;
        font-weight: bold;
    }
    
    .main-content {
        padding-top: 10px;
        padding-bottom: 40px;
        align-items: center;
        justify-content: center;
    }
    
    .scrolling-border-top span, .scrolling-border-bottom span {
        font-size: 10px;
    }
    
    .logo-container {
        width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 320px) {
    .company-logo-img {
        max-width: 120px;
    }
    
    .company-logo {
        font-size: 1.5rem;
    }
    
    .subscribe-popup {
        bottom: 20px;
        left: 10px !important;
        right: 10px !important;
        transform: none !important;
        max-width: none;
        width: calc(100% - 20px);
        padding: 10px;
        border-radius: 0;
        border: none;
    }
    
    .popup-content p {
        font-size: 11px;
        font-family: 'ABCWalterNeue', sans-serif;
        font-weight: normal;
    }
    
    .banner-content span {
        font-size: 9px;
    }
    
    .social-icons {
        gap: 6px;
    }
    
    .social-icon {
        font-size: 14px;
        width: 25px;
        height: 25px;
    }
    
    .subscribe-btn {
        font-family: 'ABCWalterAlte', sans-serif;
        font-weight: bold;
    }
    
    .main-content {
        padding-top: 5px;
        padding-bottom: 30px;
        align-items: center;
        justify-content: center;
    }
    
    .logo-container {
        width: 100%;
        padding: 0 10px;
    }
}



@font-face { 
    font-family: 'ABCLaicaMonoBookItalic'; /* Yazı tipinin adı */ 
    src: url('fonts/ABCLaicaMonoBookItalic.otf') format('opentype'), /* Yazı tipi dosyasının yolu */ 
         url('fonts/ABCLaicaMonoBookItalic.otf') format('otf');
    font-weight: normal; /* Yazı tipi ağırlığını belirtin */ 
    font-style: normal; /* Yazı tipi stilini belirtin */ 
} 

@font-face { 
    font-family: 'ABCLaicaMono'; /* Yazı tipinin adı */ 
    src: url('fonts/ABCLaicaMono-Regular-Trial.otf') format('opentype'), /* Yazı tipi dosyasının yolu */ 
         url('fonts/ABCLaicaMono-Regular-Trial.otf') format('otf');
    font-weight: normal; /* Yazı tipi ağırlığını belirtin */ 
    font-style: normal; /* Yazı tipi stilini belirtin */ 
} 


@font-face { 
    font-family: 'ABCWalterAlte'; /* Yazı tipinin adı */ 
    src: url('fonts/ABCWalterAlte.otf') format('opentype'), /* Yazı tipi dosyasının yolu */ 
         url('fonts/ABCWalterAlte.otf') format('otf');
    font-weight: normal; /* Yazı tipi ağırlığını belirtin */ 
    font-style: normal; /* Yazı tipi stilini belirtin */ 
} 


@font-face { 
    font-family: 'ABCWalterNeue'; /* Yazı tipinin adı */ 
    src: url('fonts/ABCWalterNeue.otf') format('opentype'), /* Yazı tipi dosyasının yolu */ 
         url('fonts/ABCWalterNeue.otf') format('otf');
    font-weight: normal; /* Yazı tipi ağırlığını belirtin */ 
    font-style: normal; /* Yazı tipi stilini belirtin */ 
} 