/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 0;
    text-align: center;
}

/* Logo Section */
.logo {
    display: inline-block;
}

.logo-svg {
    width: 300px;
    height: 230px;
}

/* Main Title */
.main-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.title-par {
    color: #22c55e;
}

.title-bet {
    color: #1e4db8;
}

.subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #1e4db8;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Tagline */
.tagline {
    font-size: 18px;
    color: #1e4db8;
    margin-bottom: 20px;
    font-weight: 500;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

/* Description */
.description {
    font-size: 14px;
    color: #1e4db8;
    margin-bottom: 50px;
    line-height: 1.5;
}

/* Blue Section */
.blue-section {
    width: 100vw;
    left: 50%;
    position: relative;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(135deg, #1e4db8 0%, #2563eb 100%);
    border-radius: 20px;
    padding: 40px 0;
    overflow: visible;
}

/* Bird Graphic */
.bird-graphic {
    position: absolute;
    left: 70px;
    top: -60%;
    transform: translateY(1rem);
    transform: translateX(-60%);
    z-index: 3;
}

.bird-svg {
    width: 30px;
    height: 50px;
}

/*  half bird */
.half-bird {
    position: absolute;
    top: -24.5px;
    left: 44%;
    transform: translateX(-50%);
    transform: translateY(-40%);
    z-index: 2;
}

.half-bird-svg {
    width: 220px;
    height: 200px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

/* Section Title */
.section-title {
    color: #fbbf24;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

/* Info Box */
.info-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.info-box p {
    color: white;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Balance Message */
.balance-message {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Footer Info */
.footer-info {
    padding: 1rem 20px;
}

.footer-info p {
    color: #333;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Authorization Badge */
.auth-badge {
    display: inline-flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    overflow: hidden;
}

.check-icon {
    display: flex;
    width: 170px;
    height: 100px;
}

.check-svg {
    width: 30px;
    height: 30px;
    display: block;
}

.badge-text {
    display: flex;
    flex-direction: column;
    padding: 5px 15px;
    text-align: left;
}

.badge-label {
    font-size: 11px;
    font-weight: 700;
    color: #1e4db8;
    letter-spacing: 1px;
}

.badge-brand {
    font-size: 14px;
    font-weight: 800;
    color: #1e4db8;
}

.dot {
    color: #22c55e;
}

/* Warning */
.warning {
    color: #333;
    font-size: 13px;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto 20px;
}

/* Divider */
.divider {
    height: 2px;
    background: #1e4db8;
    max-width: 500px;
    margin: 20px auto;
}

/* Contact */
.contact {
    color: #333;
    font-size: 14px;
}

.contact a {
    color: #1e4db8;
    text-decoration: none;
    font-weight: 500;
}

.contact a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .main-title {
        font-size: 36px;
    }
    
    .subtitle {
        font-size: 24px;
    }
    
    .bird-graphic {
        left: -50px;
        opacity: 0.9;
    }
    
    .bird-svg {
        width: 140px;
        height: 210px;
    }
    
    .blue-section {
        padding: 40px 20px;
    }
    
    .info-box {
        padding: 20px;
    }
    
}

@media (max-width: 1024px) and (min-width: 768px) {
  .bird-graphic {
    left: 60px;
    top: -80%;
  }

  .bird-svg {
    width: 20px;
    height: 30px;
  }
}

@media (width: 600px) and (height: 960px) {
  .bird-graphic {
    top: -65%;
    left: auto;
  }

  .bird-svg {
    width: 25px;
    height: 40px;
  }
}