.main-content{
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.hero-section {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    padding-top: 150px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}


.hero-title {
    font-size: 3.5rem;
    margin-top: 0;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.4);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
    
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #34495e;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    color: #2c3e50;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}


.hero-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.6s ease;
}

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

.hero-button:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-button {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    font-weight: bold;
    font-size: 0.95rem;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffd700;
    border-color: #ffd700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 
                 0 0 10px rgba(255, 215, 0, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image img {
    width: 25%;
    height: auto;
}

.animated-logo {
    animation: constantBounce 2s ease-in-out infinite;
    filter: brightness(1.2); /*drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));*/
    display: block;
    margin: 0 auto;
}

@keyframes constantBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
        filter: brightness(1.2); /*drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));*/
    }
}

.scroll-indicator {
    margin-top: 50px;
    animation: bounce 2s infinite;
    cursor: pointer;
    color: #ffd700;
    font-size: 2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
    transform: scale(1.1);
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}


.cloud-divider {
    width: 100%;
    height: 70px;
    position: relative;
    background: transparent;
}

.cloud {
    position: absolute;
    background: white;
    border-radius: 50px;
    animation: cloudFloat 15s ease-in-out infinite;
}

.cloud1 {
    width: 80px;
    height: 30px;
    left: 10%;
    top: 20px;
    animation-delay: 0s;
}

.cloud2 {
    width: 100px;
    height: 35px;
    left: 40%;
    top: 10px;
    animation-delay: 2s;
}

.cloud3 {
    width: 70px;
    height: 25px;
    left: 70%;
    top: 25px;
    animation-delay: 4s;
}

.cloud::before {
    content: '';
    position: absolute;
    background: white;
    border-radius: 50px;
}

.cloud1::before {
    width: 40px;
    height: 40px;
    top: -15px;
    left: 10px;
}

.cloud2::before {
    width: 50px;
    height: 50px;
    top: -20px;
    left: 20px;
}

.cloud3::before {
    width: 35px;
    height: 35px;
    top: -12px;
    left: 15px;
}

@keyframes cloudFloat {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(10px) translateY(-5px); }
    50% { transform: translateX(-5px) translateY(3px); }
    75% { transform: translateX(8px) translateY(-2px); }
}

.wheat-line {
    width: 80%;
    margin: 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #DAA520, #FFD700, #DAA520);
    border-radius: 2px;
}

.stream-section {
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 25px;
}

.section-header h2 {
    font-size: 2rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.stream-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
}

.status-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    margin-right: 8px;
    &.live {
        background: #62ff4d;
        box-shadow: 0 0 8px #62ff4d;
        animation: pulse 1.5s infinite;
    }
}

.stream-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 0 0 4px rgba(255, 255, 255, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid white;

    position: relative
}

.stream-container iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

@media (max-width: 768px) {
    .stream-container {
        border-radius: 8px;
        margin: 0 15px;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
}

.giveaway-section {
  padding: 40px 20px;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.giveaway-section .section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
}

.giveaway-section h2 {
  font-size: 2rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.giveaway-section .fa-twitter {
  color: #1DA1F2;
  font-size: 1.8rem;
}

.giveaway-container {
  position: relative;
  min-height: 300px;
}

.twitter-tweet {
  margin: 0 auto !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
  visibility: hidden;
}

.loading-giveaway {
  text-align: center;
  color: white;
  font-size: 1.1rem;
  padding: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
  .giveaway-section {
    padding: 30px 15px;
  }
  
  .giveaway-section h2 {
    font-size: 1.7rem;
  }
  
  .twitter-tweet {
    max-width: 100% !important;
  }
}

/** Borders for the kick */
.stream-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 30px;
}

.corner-bracket {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    pointer-events: none;
    z-index: 5;
    animation: cornerGlow 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.6)); 
}

.corner-bracket::before,
.corner-bracket::after {
    content: '';
    position: absolute;
    background: #ffffff;
}

.corner-top-left {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 3px;
}

.corner-top-left::before {
    width: 8px;
    height: 2px;
    top: -2px;
    left: 16px;
}

.corner-top-left::after {
    width: 2px;
    height: 8px;
    top: 16px;
    left: -2px;
}

.corner-top-right {
    top: -5px;
    right: -5px;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 3px;
}

.corner-top-right::before {
    width: 8px;
    height: 2px;
    top: -2px;
    right: 16px;
}

.corner-top-right::after {
    width: 2px;
    height: 8px;
    top: 16px;
    right: -2px;
}

.corner-bottom-left {
    bottom: -5px;
    left: -5px;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 3px;
}

.corner-bottom-left::before {
    width: 8px;
    height: 2px;
    bottom: -2px;
    left: 16px;
}

.corner-bottom-left::after {
    width: 2px;
    height: 8px;
    bottom: 16px;
    left: -2px;
}

.corner-bottom-right {
    bottom: -5px;
    right: -5px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 3px;
}

.corner-bottom-right::before {
    width: 8px;
    height: 2px;
    bottom: -2px;
    right: 16px;
}

.corner-bottom-right::after {
    width: 2px;
    height: 8px;
    bottom: 16px;
    right: -2px;
}


.corner-bracket {
    animation: cornerGlow 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

@keyframes cornerGlow {
    0% {
        border-color: #ffffff;
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    }
    100% {
        border-color: #ffffff;
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
    }
}

.tweet-container {
    opacity: 0;
    transition: opacity 0.3s ease;
}
    .tweet-container.visible {
    opacity: 1;
}

.rooster-footprint-divider {
    position: relative;
    text-align: center;
    margin: 40px 0;
}

.rooster-footprint-divider img {
    height: 80px;
    width: auto;
    max-width: 100%;
    display: inline-block; 
}


.kick-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1db954, #1ed760);
    color: #fff;
    font-weight: bold;
    font-size: 0.95rem;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(29, 185, 84, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.kick-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.6s ease;
}

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

.kick-button:hover {
    background: linear-gradient(135deg, #1ed760, #22ff6b);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(29, 185, 84, 0.5);
    color: #fff;
    text-decoration: none;
}

.twitter-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1DA1F2, #4AB8F5);
    color: #fff;
    font-weight: bold;
    font-size: 0.95rem;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(29, 161, 242, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.twitter-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.6s ease;
}

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

.twitter-button:hover {
    background: linear-gradient(135deg, #4AB8F5, #66C2F7);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(29, 161, 242, 0.5);
    color: #fff;
    text-decoration: none;
}

.button-container {
    text-align: center;
}