/* ==========================================================================
   RESET AND BASE STYLES
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==========================================================================
   CONTAINER AND LAYOUT
   ========================================================================== */
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #000000, #2c2c2c); /* Black to dark grey */
  color: #fff;
  font-family: sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

a {
  color: inherit; /* Optional: inherits white text color */
  text-decoration: none;
}

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero-section {
  width: 100%;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.two-column-section {
  display: flex;
  width: 100%;
  align-items: stretch;
  flex: 1;
}

.column {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.column-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   BUTTON STYLES
   ========================================================================== */

.button-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 20px;
  border: 2px solid;
  border-radius: 25px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  gap: 8px;
  position: relative;
  overflow: hidden;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 
    inset 0 2px 4px rgba(255, 255, 255, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.link-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.link-button:hover::before {
  left: 100%;
}

.link-button:active {
  transform: translateY(1px);
  box-shadow: 
    inset 0 1px 2px rgba(0, 0, 0, 0.3),
    0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Button Color Variations */
.whatsapp-btn {
  border-color: #25D366;
  color: white;
  background: linear-gradient(135deg, #4CAF50 0%, #25D366 50%, #1B5E20 100%);
}

.line-btn {
  border-color: #00C300;
  color: white;
  background: linear-gradient(135deg, #66BB6A 0%, #00C300 50%, #2E7D32 100%);
}

.ig-btn {
  border-color: #E4405F;
  color: white;
  background: linear-gradient(135deg, #F06292 0%, #E4405F 50%, #AD1457 100%);
}

.button-icon {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* ==========================================================================
   IMAGE AND CONTENT SECTIONS
   ========================================================================== */

.image-section {
  margin-bottom: 8px;
  flex-shrink: 0;
}

.deadline-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   FLAGS AND FOOTER SECTION
   ========================================================================== */

.flags-section {
  text-align: center;
  margin-top: 4px;
  padding: 4px 6px;
  flex-shrink: 0;
}

.flags-section > div:first-child {
  font-size: 24px;
  margin-bottom: 4px;
  letter-spacing: 3px;
}

.refund-text {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: bold;
  margin-bottom: 0;
  margin-right: 12px;
  font-size: 32px;
  gap: 6px;
}

.refund-text img {
  width: 40px;
  height: 40px;
}

.flags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.refund-flags-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
}

.flag {
  color: #007bff;
  font-weight: bold;
  font-size: 32px;
  cursor: pointer;
  text-decoration: none;
}

.flag:hover {
  color: #0056b3;
  text-decoration: underline;
}

.separator {
  color: #666;
  font-size: 32px;
}

/* ==========================================================================
   RESPONSIVE DESIGN - TABLET
   ========================================================================== */

@media screen and (max-width: 1024px) {
  .column {
    padding: 6px;
  }
  
  .button-container {
    gap: 8px;
    margin-bottom: 6px;
  }
  
  .link-button {
    padding: 20px 18px;
    font-size: 23px;
    gap: 6px;
    border-radius: 20px;
  }
  
  .button-icon {
    width: 18px;
    height: 18px;
  }
  
  .flags-section {
    padding: 3px 4px;
    margin-top: 3px;
  }
  
  .flags-section > div:first-child {
    font-size: 22px;
    margin-bottom: 3px;
    letter-spacing: 2px;
  }
  
  .refund-text {
    font-size: 20px;
    margin-bottom: 0;
    margin-right: 8px;
    gap: 4px;
  }
  
  .refund-flags-container {
    gap: 8px;
    flex-wrap: nowrap;
  }
  
  .flag {
    font-size: 20px;
  }
  
  .separator {
    font-size: 20px;
  }
  
  .image-section {
    margin-bottom: 6px;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN - MOBILE
   ========================================================================== */

@media screen and (max-width: 768px) {
  .two-column-section {
    flex-direction: column;
  }
  
  .column {
    padding: 6px;
  }
  
  .button-container {
    gap: 8px;
    margin-bottom: 6px;
  }
  
  .button-container a {
    text-decoration: none;
  }
  
  .link-button {
    padding: 18px 15px;
    font-size: 22px;
    gap: 5px;
    border-radius: 15px;
    border: 2px solid;
  }
  
  .button-icon {
    width: 16px;
    height: 16px;
  }
  
  .flags-section {
    padding: 2px 3px;
    margin-top: 2px;
  }
  
  .flags-section > div:first-child {
    font-size: 18px;
    margin-bottom: 2px;
    letter-spacing: 2px;
  }
  
  .refund-text {
    font-size: 16px;
    margin-bottom: 0;
    margin-right: 6px;
    gap: 3px;
  }
  
  .refund-flags-container {
    gap: 6px;
    flex-wrap: nowrap;
  }
  
  .flag {
    font-size: 18px;
  }
  
  .separator {
    font-size: 18px;
  }
  
  .image-section {
    margin-bottom: 4px;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ========================================================================== */

@media screen and (max-width: 480px) {
  .two-column-section {
    flex-direction: column;
  }
  
  .column {
    padding: 0px;
  }
  
  .button-container {
    gap: 6px;
    margin-bottom: 4px;
  }
  
  .link-button {
    padding: 16px 12px;
    font-size: 21px;
    gap: 4px;
    border-radius: 12px;
  }
  
  .button-icon {
    width: 36px;
    height: 36px;
  }
  
  .flags-section {
    padding: 2px 2px;
    margin-top: 2px;
  }
  
  .flags-section > div:first-child {
    font-size: 16px;
    margin-bottom: 2px;
    letter-spacing: 1px;
  }
  
  .refund-text {
    font-size: 14px;
    margin-bottom: 0;
    margin-right: 4px;
    gap: 2px;
  }
  
  .refund-flags-container {
    gap: 4px;
    flex-wrap: nowrap;
  }
  
  .flag {
    font-size: 16px;
  }
  
  .separator {
    font-size: 16px;
  }
  
  .image-section {
    margin-bottom: 3px;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN - EXTRA SMALL MOBILE
   ========================================================================== */

@media screen and (max-width: 360px) {
  .two-column-section {
    flex-direction: column;
  }
  
  .column {
    padding: 4px;
  }
  
  .button-container {
    gap: 3px;
    margin-bottom: 3px;
  }
  
  .link-button {
    padding: 14px 8px;
    font-size: 20px;
    gap: 3px;
    border-radius: 10px;
    border: 1px solid;
  }
  
  .button-icon {
    width: 12px;
    height: 12px;
  }
  
  .flags-section {
    padding: 1px 1px;
    margin-top: 1px;
  }
  
  .flags-section > div:first-child {
    font-size: 14px;
    margin-bottom: 1px;
    letter-spacing: 1px;
  }
  
  .refund-text {
    font-size: 12px;
    margin-bottom: 0;
    margin-right: 3px;
    gap: 2px;
  }
  
  .refund-flags-container {
    gap: 3px;
    flex-wrap: nowrap;
  }
  
  .flag {
    font-size: 14px;
  }
  
  .separator {
    font-size: 14px;
  }
  
  .image-section {
    margin-bottom: 2px;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN - ULTRA SMALL MOBILE
   ========================================================================== */

@media screen and (max-width: 320px) {
  .two-column-section {
    flex-direction: column;
  }
  
  .column {
    padding: 2px;
  }
  
  .button-container {
    gap: 2px;
    margin-bottom: 2px;
  }
  
  .link-button {
    padding: 12px 6px;
    font-size: 19px;
    gap: 2px;
    border-radius: 8px;
    border: 1px solid;
  }
  
  .button-icon {
    width: 10px;
    height: 10px;
  }
  
  .flags-section {
    padding: 1px 1px;
    margin-top: 1px;
  }
  
  .flags-section > div:first-child {
    font-size: 12px;
    margin-bottom: 1px;
    letter-spacing: 1px;
  }
  
  .refund-text {
    font-size: 10px;
    margin-bottom: 0;
    margin-right: 2px;
    gap: 1px;
  }
  
  .refund-flags-container {
    gap: 2px;
    flex-wrap: nowrap;
  }
  
  .flag {
    font-size: 12px;
  }
  
  .separator {
    font-size: 12px;
  }
  
  .image-section {
    margin-bottom: 1px;
  }
}