body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background: #111;
  color: #fff;
}


.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
	padding: 50px;
}

.container p {
    font-size: 3rem;
    padding: .5rem;
    font-weight: 700;
    letter-spacing: .1rem;
    text-align: center;
    overflow: hidden;
}

h3 {
    font-size: 1.5rem
}

.container p span.typed-text {
    font-weight: 400;
    color: #f23f3f
}

.container p span.cursor {
    display: inline-block;
    background-color: #ccc;
    margin-left: .1rem;
    width: 3px;
    animation: blink 1s infinite
}

.container p span.cursor.typing {
    animation: none
}

.center-vertically {
    display: table-cell;
    vertical-align: middle;
    height: 100%
}

.center-vertically-holder {
    display: table;
    height: 100%
}

/* Main title */
h1.main-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  margin-bottom: 50px;
}

.cover-featured {
  background: #222;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  text-align: center;
  transition: transform 0.2s ease;
  position: relative;
  overflow: visible; /* επιτρέπει στο ribbon να φαίνεται */
}

.ribbon {
  --f: 10px;
  --r: 15px;
  --t: 20px;

  position: absolute;
  top: var(--t);
  right: -10px; /* top-right */
  padding: 0 10px var(--f) calc(10px + var(--r));
  clip-path: 
    polygon(
      0 0,
      100% 0,
      100% calc(100% - var(--f)),
      calc(100% - var(--f)) 100%,
      calc(100% - var(--f)) calc(100% - var(--f)),
      0 calc(100% - var(--f)),
      var(--r) calc(50% - var(--f)/2)
    );
  background: #f23f3f;
  box-shadow: 0 calc(-1*var(--f)) 0 inset #0005;
  z-index: 10;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 40px;
  text-align: center;
}



/* Cover shared styles */
.cover {
  background: #222;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  text-align: center;
  transition: transform 0.2s ease;
  position: relative;
}

.cover:hover, .cover-featured:hover {
  transform: scale(1);
}

.cover img, .cover-featured img {
  width: 100%;
  height: auto;
  display: block;
}

/* Links inside cover */
.cover .links a, .cover-featured .links a {
  margin: 0 8px;
  font-size: 3rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.cover .links a:hover, .cover-featured .links a:hover {
  color: #f23f3f;
}

.cover .links a.apple:hover, .cover-featured .links a.apple:hover {
  color: #f23f3f;
}

/* Grid for other covers */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

@media (max-width: 768px) {
  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* πάντα 3 σε mobile */
    gap: 10px;
  }

  .cover img {
    width: 100%;
    height: auto;
  }
}


/* Featured container */
.featured {
  max-width: 500px;
  margin: 0 auto 50px auto;
  position: relative;
}

/* Mobile adjustments */
@media (max-width: 400px) {
  h1.main-title {
    font-size: 2rem;
  }
  .featured, .cover, .cover-featured {
    max-width: 100%;
  }
}

/* Main title bar */
h1.main-title {
  background: #fff;       /* λευκό background */
  color: #000;            /* μαύρο κείμενο */
  text-align: center;     /* κεντραρισμένος τίτλος */
  font-size: 2rem;        /* μέγεθος γραμματοσειράς */
  font-weight: 700;       /* έντονο κείμενο */
  margin: 0 0 30px 0;     /* απόσταση κάτω από το bar */
  padding: 15px 10px;     /* εσωτερικό padding */
  font-family: Arial, sans-serif;
  border-radius: 0;       /* χωρίς στρογγυλεμένες γωνίες */
  text-shadow: none;      /* καθαρό κείμενο, χωρίς σκιά */
}

/* Responsive adjustments */
@media (max-width: 400px) {
  h1.main-title {
    font-size: 1.5rem;
    padding: 12px 8px;
  }
}


#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  
  width: 50px;       /* ίσο πλάτος και ύψος */
  height: 50px;
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 50%; /* τέλειος κύκλος */
  cursor: pointer;
  font-size: 1.5rem;
  display: none;     /* αρχικά κρυφό */
  transition: background 0.3s, color 0.3s;
  text-align: center;
  line-height: 50px; /* για να κεντραριστεί το εικονίδιο */
}

#scrollTopBtn:hover {
  background-color: #000;
  color: #fff;
}

.social-icons-light-hover {
    color: #fff;
    -webkit-transition: color .5s;
    -moz-transition: color .5s;
    -o-transition: color .5s;
    transition: color .5s
}

.social-icons-light-hover:hover {
    color: rgba(255, 255, 255, .7)
}

.social-icons-dark-hover {
    color: #fff;
    -webkit-transition: color .5s;
    -moz-transition: color .5s;
    -o-transition: color .5s;
    transition: color .5s
}

.social-icons-dark-hover:hover {
    color: rgba(255, 255, 255, .7)
}

/* Social icons container */
.social-icons {
    display: flex;
    flex-wrap: wrap;         /* για responsive */
    justify-content: center; /* να είναι πάντα κεντραρισμένα */
    gap: 10px;               /* κενό ανάμεσα */
}

/* Social icons */
.social-icons a {
    color: #fff;             /* λευκά αρχικά */
    font-size: 2.2rem;         /* μέγεθος icons */
    transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    color: #f23f3f;          /* κόκκινα στο hover */
    transform: scale(1.2);   /* λίγο εφέ */
}

/* Copyright */
#scaleReveal h3 {
    color: #fff;             /* λευκό το κανονικό κείμενο */
    font-size: 1.5rem;
}

#scaleReveal h3 a {
    color: #fff;          /* κόκκινο μόνο το link */
    text-decoration: none;
}

#scaleReveal h3 a:hover {
    text-decoration: underline; /* αν θες εφέ στο hover */
}






.yalla {
  --f: 10px;
  --r: 15px;
  --t: 10px;

  position: absolute;
  top: var(--t);
  right: -10px; /* top-right */
  padding: 0 20px var(--f) calc(10px + var(--r));
  clip-path: 
    polygon(
      0 0,
      100% 0,
      100% calc(100% - var(--f)),
      calc(100% - var(--f)) 100%,
      calc(100% - var(--f)) calc(100% - var(--f)),
      0 calc(100% - var(--f)),
      var(--r) calc(50% - var(--f)/2)
    );
  background: #f23f3f;
  box-shadow: 0 calc(-1*var(--f)) 0 inset #0005;
  z-index: 10;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  line-height: 40px;
  text-align: center;
}

@media (max-width: 768px) {
.yalla {
  --f: 10px;
  --r: 15px;
  --t: 10px;

  position: absolute;
  top: var(--t);
  right: -10px; /* top-right */
  padding: 0 20px var(--f) calc(10px + var(--r));
  clip-path: 
    polygon(
      0 0,
      100% 0,
      100% calc(100% - var(--f)),
      calc(100% - var(--f)) 100%,
      calc(100% - var(--f)) calc(100% - var(--f)),
      0 calc(100% - var(--f)),
      var(--r) calc(50% - var(--f)/2)
    );
  background: #f23f3f;
  box-shadow: 0 calc(-1*var(--f)) 0 inset #0005;
  z-index: 10;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  line-height: 30px;
  text-align: center;
}
}


.release-date {
  background-color: #ccc;   /* γκριζο φόντο */
  color: #000;              /* μαύρο κείμενο */
  text-align: center;       /* κεντραρισμένο κείμενο */
  font-weight: bold;
  font-size: 2rem;
  padding: 8px 0;
  margin-top: 10px;         /* λίγο κενό πάνω από τα links */
  border-top: 2px solid #fff; /* λευκή γραμμή πάνω */
  border-radius: 0 0 12px 12px; /* στρογγυλεμένες γωνίες κάτω */
}

.grid2 {
  width: 100%;
  max-width: 260px;
  margin: 18px auto 0;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.12);
}

.grid2 img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}