.swiper {
    width: 95%;
    max-width: 1100px;
	
	height: 750px;
}

.plan-card {
  width: 100%;
  min-height: 700px;

  display: flex;
  flex-direction: column;

  background: #1a1a1a;
  border-radius: 25px;
  padding: 2rem;

  color: #f5f5f5;
  text-decoration: none;

  box-shadow: 0 5px 20px rgba(0,0,0,0.5);

  transition: transform 0.4s ease, box-shadow 0.4s ease;
  perspective: 1000px;
}

/* DATE */
.date {
    font-size: 34px;
    font-weight: bold;
    color: red;
    text-shadow: 0 0 10px rgba(255,0,0,0.4);
}

.grid {
    display: flex;
    gap: 20px;
    flex: 1;
    min-height: 0;
}

.swiper-slide {
    display: flex;
    align-items: stretch;
    height: auto;
}

/* LEFT */
.twitch {
    flex: 2;
}

.right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;

    min-height: 0;
}

.box {
	background: rgba(40,40,40,0.7);
    border-radius: 15px;
    padding: 15px;

    height: auto;
    min-height: 0;
}

/* NOTIZEN AUTO HEIGHT FIX */
.notes {
    flex: none;
    min-height: 60px;
    height: auto;
    overflow: visible;
}

/* YOUTUBE FIX */
.youtube {
    flex: none;
}

/* TEXT WRAP FIX */
.box p {
    margin: 0;
    color: #ccc;
    word-wrap: break-word;
}

.db-box {
    margin-top: 10px;
    padding: 12px;

    border-radius: 12px;

    border: 1px solid rgba(255, 0, 0, 0.6);
    background: rgba(255, 0, 0, 0.08);

    color: #ddd;
}

.back-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 16px;
    border-radius: 12px;
    background: rgba(20,20,20,0.7);
    color: white;
    text-decoration: none;
    font-weight: bold;
    backdrop-filter: blur(10px);

    transition: all 0.25s ease;
}

.back-btn:hover {
    background: rgba(255, 0, 0, 0.25);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6),
                0 0 30px rgba(255, 0, 0, 0.3);
    transform: translateY(-2px) scale(1.05);
}