/* EKTO ENC. SOFTWARE - DESİGN
   Aycisko Kick Streamer Web Site - 2025
   License: aycisko.com
   Responsive Styles
*/

/* Mobil cihazlarda AOS animasyonlarını devre dışı bırakma */
@media screen and (max-width: 768px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    transition: none !important;
    animation: none !important;
  }
  
  /* Mobil görünümde animasyonsuz elemanlar için ek düzenlemeler */
  .pixel-button {
    margin-bottom: 15px !important;
  }
  
  .hero-text > * {
    margin-bottom: 15px !important;
  }
  
  .about-icon, .team-icon {
    transform: none !important;
  }
  
  .team-slider {
    animation: slider-animation 60s linear infinite !important;
  }
  
  .info-ribbon p {
    animation: marquee 30s linear infinite !important;
  }
  
  .popup-content {
    width: 95%;
    padding: 20px;
  }
  
  .kick-embed-container {
    padding-top: 65%; /* Taller aspect ratio for mobile */
  }
}

/* ==================== TABLET VE ORTA EKRANLAR (1024px'e kadar) ==================== */
@media screen and (max-width: 1024px) {
  /* Header ve Hero Bölümü */
  header {
    background-size: 180% auto;
    height: 110vh;
  }
  
  .hero-content {
    top: 55%;
  }
  
  .pixel-text {
    font-size: 2.5rem;
  }
  
  .invited-text {
    font-size: 2.5rem;
  }
  
  .hero-description {
    max-width: 60%;
    font-size: 1.1rem;
  }
  
  /* Navigation */
  nav {
    width: 90%;
    padding: 3% 5%;
  }
  
  .nav-links ul li {
    margin: 0 10px;
  }
  
  .nav-links ul li a {
    font-size: 1rem;
  }
  
  /* Kayan Yıldızlar */
  .shooting-star {
    width: 60px;
  }
  
  /* Info Ribbon */
  .info-ribbon {
    height: 50px;
  }
  
  .info-ribbon p {
    font-size: 1rem;
  }
  
  .fixed-character-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 11;
    pointer-events: none;
  }
  
  /* Şerit üzerindeki karakterler - Yeni sabit konumlandırma */
  .character-relax {
    position: absolute;
    width: clamp(180px, 18vw, 250px); /* Responsive boyut, minimum 180px, maksimum 250px */
    height: auto;
    bottom: calc(30px + 6vh); /* Ribbon'un üstünde sabit mesafe */
    right: clamp(5%, 10vw, 15%); /* Sağdan mesafe, ekran genişliğine göre ölçekli */
    z-index: 11;
    animation: float-character 4s ease-in-out infinite;
    transform-origin: bottom center;
  }
  
  .character-walks {
    position: absolute;
    width: clamp(100px, 12vw, 150px); /* Responsive boyut, minimum 100px, maksimum 150px */
    height: auto;
    bottom: calc(73px - 3px); /* Ribbon'un üstünde sabit mesafe */
    left: clamp(5%, 10vw, 15%); /* Soldan mesafe, ekran genişliğine göre ölçekli */
    z-index: 11;
    transform-origin: bottom center;
  }
  
  /* Mobil için marquee animasyonu */
  @keyframes marquee {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-150%);
    }
  }
  
  /* About Section */
  .about-title {
    font-size: 2.5rem;
  }
  
  .about-subtitle {
    font-size: 3rem;
  }
  
  .about-description {
    width: 70%;
    font-size: 1.1rem;
  }
  
  .platform-container {
    height: 300px;
  }
  
  .platform-image {
    height: 300px;
  }
  
  .throne-image {
    max-height: 150px;
    bottom: 120px;
  }
  
  /* Team Section */
  .team-title {
    font-size: 3rem;
  }
  
  .team-subtitle {
    font-size: 3rem;
  }
  
  .team-card {
    width: 180px;
    height: 180px;
    margin: 0 12px;
  }
  
  .kick-logo {
    width: 45%;
  }
  
  /* Discord Section */
  .discord-section {
    min-height: 80vh;
    padding: 60px 0;
  }
  
  .discord-logo {
    font-size: 5rem;
    transform: scale(1.3);
  }
  
  .discord-text h2 {
    font-size: 2.2rem;
  }
  
  .discord-button {
    font-size: 1.1rem;
    padding: 14px 28px;
  }
  
  /* Contact Section */
  .contact-container {
    padding: 0 30px;
  }
  
  .contact-subtitle {
    font-size: 2.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
  }
  
  /* Stats Section */
  .stats-title-secondary,
  .stats-title-primary {
    font-size: 3rem;
  }
  
  .stats-boxes {
    gap: 15px;
  }
  
  .stats-box {
    padding: 15px;
    min-width: 180px;
  }
  
  .stats-value {
    font-size: 1.3rem;
  }
  
  .stats-divider {
    width: 20px;
    height: 20px;
    margin: 0 5px;
  }
  
  /* Footer Section */
  .footer-container {
    padding: 0 30px;
  }
}

/* ==================== MOBİL EKRANLAR (768px'e kadar) ==================== */
@media screen and (max-width: 768px) {
  /* Header ve Hero Bölümü */
  header {
    background-size: 400% auto;
    height: 120vh;
  }
  
  .hero-content {
    top: 50%;
  }
  
  .pixel-text {
    font-size: 2.5rem;
  }
  
  .invited-text {
    font-size: 2.3rem;
  }
  
  .hero-description {
    max-width: 80%;
    font-size: 1rem;
    margin-top: 20px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .pixel-action-button {
    min-width: 160px;
    font-size: 1rem;
    padding: 7px 15px;
  }
  
  /* Navigation */
  nav {
    width: 95%;
    padding: 3% 5%;
    height: 60px;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .logo > p {
    font-size: 0.8rem;
  }
  
  /* Discord Section */
  .discord-section {
    min-height: 60vh;
  }
  
  .discord-logo {
    font-size: 2.5rem;
  }
  .discord-logo p{
    font-size: 0.6rem;
  }
  
  .discord-icon {
    margin-top: 20px;
  }
  
  .discord-icon img {
    max-width: 85px;
  }
  
  .discord-text {
    margin-top: 0;
  }
  
  .discord-text h2 {
    font-size: 1rem;
  }
  
  .discord-button {
    font-size: 1rem;
    padding: 12px 24px;
  }
  
  /* Hamburger Menu */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--dark-overlay);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-normal);
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links ul {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  
  .nav-links ul li {
    margin: 15px 0;
    width: 100%;
    padding: 10px 0;
  }
  
  .nav-links ul li a {
    font-size: 1.2rem;
    width: 100%;
    display: block;
  }
  
  .hamburger {
    display: block;
    z-index: 1000;
  }
  
  .hamburger.active .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .line:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .shooting-star {
    width: 40px;
  }
  
  .info-ribbon {
    height: 40px;
  }
  
  .ribbon-logo {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
    padding: 3px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    text-align: center;
  }
  .ribbon-logo::after{
    right: -10px;
  }
  .text-container {
    width: calc(100% - 100px);
  }
  
  .info-ribbon p {
    font-size: 0.9rem;
    white-space: nowrap;
  }
  
  @keyframes marquee {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-200%);
    }
  }
  
  .character-relax {
    width: 150px;
    bottom: 60px;
    right: 5%;
    display: none;
  }
  
  .character-walks {
    width: 100px;
    bottom: 60px;
  }
  
  .about-section {
    padding: 60px 0;
    height: 70vh;
  }
  
  .about-icon {
    width: 60px;
    margin-bottom: 20px;
  }
  
  .about-title {
    font-size: 2.5rem;
  }
  
  .about-subtitle {
    font-size: 2rem;
  }
  
  .about-description {
    width: 85%;
    font-size: 1.2rem;
    margin-top: 20px;
  }
  
  .platform-container {
    height: 300px;
  }
  
  .platform-image {
    height: 300px;
  }
  
  .throne-image {
    max-height: 120px;
    bottom: 80px;
  }
  
  .team-section {
    padding: 60px 0;
    min-height: 90vh;
  }
  
  .team-icon {
    width: 30px;
    margin-bottom: 20px;
  }
  
  .team-title {
    font-size: 2rem;
  }
  
  .team-subtitle {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  .team-slider{
    gap: 0;
  }
  .team-card {
    width: 150px;
    height: 150px;
    margin: 0 10px;
  }
  .kick-overlay p{
    font-size: 1rem;
  }
  .kick-logo {
    width: 40%;
  }
  
  @keyframes slider-animation {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-160px * 5));
    }
  }
  
  .contact-container {
    flex-direction: column;
  }
  .contact-form-container{
    padding: 0;
  }
  .contact-left,
  .contact-right {
    width: 100%;
    padding: 0;
  }
  .contact-form .pixel-action-button {
    padding: 10px 0;
  }
  .contact-header {
    margin-bottom: 30px;
  }
  
  .contact-title {
    font-size: 1.5rem;
  }
  
  .contact-subtitle {
    font-size: 2rem;
  }
  
  .contact-description {
    font-size: 1rem;
  }
  
  .contact-info {
    margin-top: 20px;
  }
  
  .stats-title-secondary,
  .stats-title-primary {
    font-size: 2.5rem;
  }
  
  .stats-boxes {
    flex-wrap: wrap;
  }
  
  .stats-box {
    min-width: 100%;
  }
  .stats-box-content{
    text-align: center;
  }
  .stats-value {
    font-size: 1.3rem;
  }
  
  .stats-section {
    padding: 60px 0;
  }
  
  .stats-header {
    margin-bottom: 30px;
  }
  
  .stats-divider {
    width: 15px;
    height: 15px;
    margin: 0 3px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-copyright {
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  /* Header ve Hero */
  header {
    height: 130vh;
    background-size: 500% auto;
  }
  
  .pixel-button {
    min-width: 220px;
    min-height: 50px;
    background-size: 100% 50%;
  }
  
  .pixel-text {
    font-size: 1.9rem;
  }
  .pixel-action-button{
    padding: 7px 15px;
  }
  .invited-text {
    font-size: 1.9rem;
  }
  
  .hero-description {
    max-width: 90%;
    font-size: 0.9rem;
    margin-top: 15px;
  }
  
  .logo {
    font-size: 1.2rem;
  }
  
  .logo > p {
    font-size: 0.7rem;
  }
  
  .nav-links {
    width: 100%;
  }
  
  .shooting-star {
    width: 30px;
  }
  
  .shooting-star::after {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 6px 1px rgba(255, 255, 255, 0.4);
  }
  
  .info-ribbon {
    height: 35px;
  }
  
  .ribbon-logo {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    text-align: center;
  }
  .ribbon-logo::after {
    right: -10px;

  }
  .text-container {
    width: calc(100% - 90px);
  }
  
  .info-ribbon p {
    font-size: 0.8rem;
    padding: 0 5px;
  }
  
  @keyframes marquee {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-300%);
    }
  }
  
  .character-relax {
    width: 120px;
    bottom: 70px;
    right: 0;
    display: none;
  }
  
  .character-walks {
    width: 80px;
    bottom: 55px;
  }
  
  .about-section {
    padding: 50px 0;
    height: 50vh;
  }
  .about-icon {
    width: 55px;
    margin-bottom: 15px;
  }
  
  .about-title {
    font-size: 1.9rem;
  }
  
  .about-subtitle {
    font-size: 1.8rem;
  }
  
  .about-description {
    width: 95%;
    font-size: 0.9rem;
    margin-top: 5px;
  }
  
  .about-description br {
    display: none;
  }
  
  .platform-container {
    height: 250px;
  }
  
  .platform-image {
    height: 250px;
  }
  
  .throne-image {
    max-height: 100px;
    bottom: 60px;
  }
  
  .team-section {
    padding: 50px 0;
    min-height: 100vh;
  }
  
  .team-icon {
    width: 25px;
    margin-bottom: 15px;
  }
  
  .team-title {
    font-size: 1.8rem;
  }
  
  .team-subtitle {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  .team-slider{
    gap: 0;
  }
  .team-card {
    width: 120px;
    height: 120px;
    margin: 0 8px;
  }
  
  .kick-logo {
    width: 35%;
  }
  .kick-overlay p{
    font-size: 0.8rem;
  }
  .contact-section{
    min-height: 80vh;
  }
  .team-slider-container {
    margin-top: 30px;
  }
  
  .contact-form-container {
    margin-top: 30px;
    padding: 0;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
  
  .contact-form .pixel-action-button {
    min-width: 140px;
    font-size: 0.9rem;
  }
  
  .contact-title {
    font-size: 1.3rem;
  }
  
  .contact-subtitle {
    font-size: 1.8rem;
  }
  
  .contact-description {
    font-size: 0.9rem;
  }
  
  .contact-info {
    margin-top: 15px;
  }
  
  .contact-info img {
    height: 18px;
  }
  
  .stats-title-secondary,
  .stats-title-primary {
    font-size: 2rem;
  }
  
  .stats-box {
    min-width: 100%;
  }
  .stats-box-content{
    text-align: center;
  }
  .stats-label {
    font-size: 0.9rem;
  }
  
  .stats-value {
    font-size: 1.1rem;
  }
  
  .stats-divider {
    width: 12px;
    height: 12px;
    margin: 0 2px;
  }
  
  .discord-section {
    min-height: 50vh;
  }
  
  .discord-logo {
    font-size: 2rem;
  }
  .discord-logo > p {
    font-size: 0.4rem;
  }
  .discord-icon img {
    max-width: 100px;
  }
  
  .discord-text h2 {
    margin-top: 0;
    font-size: 1rem;
  }
  
  .discord-button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  
  .footer-copyright {
    font-size: 0.9rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
    margin: 0 8px;
  }
  
  .popup-content {
    padding: 15px;
  }
  
  .popup-content h2 {
    font-size: 1.5rem;
  }
  
  .kick-embed-container {
    padding-top: 70%;
  }
}

@media screen and (max-width: 360px) {
  .pixel-text {
    font-size: 1.5rem;
  }
  
  .invited-text {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 0.8rem;
  }
  
  .pixel-button {
    min-width: 200px;
    min-height: 45px;
  }
  
  .ribbon-logo {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    text-align: center;
  }
  
  .text-container {
    width: calc(100% - 90px);
  }
  
  .info-ribbon p {
    font-size: 0.7rem;
  }
  
  @keyframes marquee {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-350%);
    }
  }
  
  .character-relax {
    width: 100px;
    bottom: 45px;
  }
  
  .character-walks {
    width: 70px;
    bottom: 30px;
  }
  
  .about-title {
    font-size: 1.5rem;
  }
  
  .about-subtitle {
    font-size: 1.8rem;
  }
  
  .platform-container {
    height: 50px;
  }
  
  .platform-image {
    height: 50px;
  }
  
  .throne-image {
    max-height: 80px;
    bottom: 50px;
  }
  
  .team-title {
    font-size: 1.5rem;
  }
  
  .team-subtitle {
    font-size: 1.8rem;
  }
  
  .team-card {
    width: 120px;
    height: 160px;
    margin: 0 5px;
  }
  
  .kick-logo {
    width: 30%;
  }
  
  .contact-title {
    font-size: 1.2rem;
  }
  
  .contact-subtitle {
    font-size: 1.5rem;
  }
  
  .contact-description {
    font-size: 0.8rem;
  }
  
  .contact-info p {
    font-size: 0.8rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
  
  .stats-title-secondary,
  .stats-title-primary {
    font-size: 1.8rem;
  }
  
  .stats-box {
    padding: 10px;
  }
  
  .stats-label {
    font-size: 0.8rem;
  }
  
  .stats-value {
    font-size: 1rem;
  }
  
  .stats-divider {
    width: 10px;
    height: 10px;
    margin: 0 2px;
  }
  
  .discord-logo {
    font-size: 2.5rem;
  }
  
  .discord-icon img {
    max-width: 25px;
  }
  
  .discord-text h2 {
    font-size: 1.3rem;
  }
  
  .discord-button {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
} 