:root {
    --ed-primary: #ff1d1d;
    --ed-glow: #eeba30;
    --ed-text: #ffffff;
}

/* Generic Utility Class: .comic-bubble */
.comic-bubble {
    position: relative;
    background-color: var(--ed-primary);
    border-radius: 12px;
    border: 3px solid #000;
    box-shadow: 0 0 25px var(--ed-glow);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    color: var(--ed-text);
}

.comic-bubble:hover {
    transform: scale(1.03) translateY(-3px);
}

/* The Speech Bubble Tail */
.comic-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 40px;
    width: 25px;
    height: 25px;
    background-color: inherit;
    /* Matches the bubble's background */
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    border-bottom: 3px solid #000;
    z-index: -1;
    /* Place slightly behind to avoid double border weirdness */
}

/* Specific Card Styles (Extending .comic-bubble) */
.event-day-card {
    width: 280px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.event-action-card {
    width: 400px;
    height: 120px;
    display: flex;
    align-items: center;
    padding: 0 30px;
    gap: 20px;
}

/* Typography & Inner Elements */
.day-label {
    font-family: 'Bangers', cursive;
    font-size: 3.5rem;
    color: var(--ed-text);
    font-style: italic;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 2px 2px 0px #000;
    -webkit-text-stroke: 1px #000;
}

.date-label,
.weekday-label {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    color: var(--ed-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.action-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--ed-text);
}

.action-icon-wrapper i,
.action-icon-wrapper svg {
    font-size: 3rem;
    filter: drop-shadow(2px 2px 0px #000);
}

.action-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.action-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
    color: var(--ed-glow);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.action-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--ed-text);
    text-shadow: 2px 2px 0px #000;
    line-height: 1.1;
}

/* Color Variations */
.style-orange {
    --ed-primary: #ff8008;
    --ed-glow: #ffc837;
}

.style-blue {
    --ed-primary: #0082ff;
    --ed-glow: #00d2ff;
}