/* =========================
GLOBAL
========================= */

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

body{
font-family:Arial,sans-serif;
background:#f4f7ff;
color:#111;
overflow-x:hidden;
line-height:1.7;
}

a{
text-decoration:none;
transition:0.3s;
}

img{
max-width:100%;
display:block;
}

/* =========================
HEADER
========================= */

.goa-header{
width:100%;
padding:15px 20px;
background:linear-gradient(90deg,#00136b,#004cff,#6a00ff);
position:sticky;
top:0;
z-index:999;
box-shadow:0 4px 20px rgba(0,0,0,0.15);
}

.goa-header-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
}

.goa-logo img{
height:55px;
width:auto;
}

.goa-buttons{
display:flex;
gap:12px;
}

.home-btn,
.telegram-btn{
padding:12px 24px;
border-radius:40px;
font-size:15px;
font-weight:700;
}

.home-btn{
background:#fff;
color:#111;
}

.telegram-btn{
background:#0088cc;
color:#fff;
box-shadow:0 0 20px rgba(0,136,204,0.4);
}

/* =========================
HERO
========================= */

.goa-hero{
position:relative;
padding:90px 20px;
background:
linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
linear-gradient(135deg,#001d8f,#003cff,#7000ff);
text-align:center;
overflow:hidden;
border-bottom-left-radius:45px;
border-bottom-right-radius:45px;
}

.goa-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:
radial-gradient(circle at top right,rgba(255,255,255,0.12),transparent 40%);
}

.goa-hero-content{
position:relative;
z-index:2;
max-width:950px;
margin:auto;
}

.goa-badge{
display:inline-block;
padding:12px 22px;
background:rgba(255,255,255,0.15);
border-radius:50px;
color:#fff;
font-weight:700;
font-size:15px;
margin-bottom:25px;
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.2);
}

.goa-hero h1{
font-size:62px;
font-weight:900;
line-height:1.2;
color:#fff;
margin-bottom:20px;
}

.goa-hero p{
font-size:20px;
line-height:1.9;
max-width:850px;
margin:auto;
color:#f1f1f1;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.join-btn,
.read-btn{
padding:16px 35px;
border-radius:50px;
font-size:18px;
font-weight:800;
}

.join-btn{
background:#fff;
color:#004cff;
box-shadow:0 0 25px rgba(255,255,255,0.25);
}

.read-btn{
background:#ffcc00;
color:#111;
}

/* =========================
FEATURED IMAGE
========================= */

.featured-image-section{
padding:60px 20px 20px;
}

.featured-image-box{
max-width:1200px;
margin:auto;
border-radius:30px;
overflow:hidden;
box-shadow:0 12px 35px rgba(0,0,0,0.1);
}

.featured-image-box img{
width:100%;
height:auto;
display:block;
}

/* =========================
BLOG MAIN
========================= */

.blog-main-section{
padding:20px;
}

.blog-container{
max-width:1000px;
margin:auto;
background:#fff;
padding:50px;
border-radius:30px;
box-shadow:0 12px 35px rgba(0,0,0,0.08);
}

.blog-container h2{
font-size:38px;
margin-bottom:22px;
margin-top:30px;
color:#002d8f;
}

.blog-container p{
font-size:18px;
color:#444;
line-height:1.9;
margin-bottom:22px;
}

.blog-container ul{
padding-left:22px;
margin-bottom:25px;
}

.blog-container ul li{
font-size:17px;
margin-bottom:12px;
color:#333;
}

.blog-image{
margin:35px 0;
border-radius:25px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.blog-image img{
width:100%;
display:block;
}

/* =========================
PREDICTION GRID
========================= */

.prediction-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin:30px 0;
}

.prediction-card{
padding:35px;
border-radius:25px;
color:#fff;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.prediction-card h3{
font-size:28px;
margin-bottom:15px;
}

.prediction-card p{
font-size:16px;
color:#fff;
margin:0;
}

.red{
background:linear-gradient(135deg,#ff2b2b,#ff0055);
}

.green{
background:linear-gradient(135deg,#00b140,#00e676);
}

.violet{
background:linear-gradient(135deg,#7b00ff,#c300ff);
}

/* =========================
BONUS TABLE
========================= */

.bonus-table{
width:100%;
border-collapse:collapse;
margin:30px 0;
overflow:hidden;
border-radius:20px;
}

.bonus-table th{
background:#004cff;
color:#fff;
padding:18px;
font-size:18px;
text-align:left;
}

.bonus-table td{
padding:18px;
background:#f9fbff;
border-bottom:1px solid #ddd;
font-size:16px;
}

/* =========================
NUMBER GRID
========================= */

.number-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin:35px 0;
}

.number-card{
background:#eef3ff;
padding:30px;
border-radius:22px;
text-align:center;
font-weight:800;
font-size:20px;
color:#004cff;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

/* =========================
FAQ
========================= */

.faq-box{
background:#f9fbff;
padding:30px;
border-radius:22px;
margin-top:20px;
border-left:5px solid #004cff;
}

.faq-box h3{
font-size:24px;
margin-bottom:12px;
}

.faq-box p{
margin:0;
font-size:17px;
}

/* =========================
TELEGRAM CTA
========================= */

.goa-telegram{
max-width:1200px;
margin:60px auto;
padding:40px;
border-radius:30px;
background:linear-gradient(90deg,#0014a8,#005eff);
display:grid;
grid-template-columns:120px 1fr 240px;
gap:25px;
align-items:center;
color:#fff;
}

.goa-telegram-left img{
width:95px;
}

.goa-telegram-center h2{
font-size:36px;
margin-bottom:12px;
}

.goa-telegram-center p{
font-size:17px;
line-height:1.8;
}

.goa-telegram-right{
text-align:center;
}

.goa-telegram-right a{
display:inline-block;
padding:16px 35px;
background:#fff;
color:#004cff;
border-radius:50px;
font-size:18px;
font-weight:800;
box-shadow:0 0 25px rgba(255,255,255,0.3);
}

/* =========================
FOOTER
========================= */

.goa-footer{
background:#00145e;
padding:40px 20px;
text-align:center;
color:#fff;
margin-top:50px;
}

.goa-footer-links{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
margin-bottom:22px;
}

.goa-footer-links a{
color:#fff;
font-size:16px;
font-weight:600;
}

.goa-footer-links a:hover{
color:#1ec9ff;
}

/* =========================
TABLET
========================= */

@media(max-width:992px){

.prediction-grid{
grid-template-columns:1fr;
}

.number-grid{
grid-template-columns:1fr 1fr;
}

.goa-telegram{
grid-template-columns:1fr;
text-align:center;
}

.goa-telegram-left{
display:flex;
justify-content:center;
}

}

/* =========================
MOBILE
========================= */

@media(max-width:600px){

.goa-header-container{
flex-direction:column;
gap:15px;
}

.goa-logo img{
height:42px;
}

.goa-buttons{
width:100%;
justify-content:center;
flex-wrap:wrap;
}

.home-btn,
.telegram-btn{
padding:10px 18px;
font-size:14px;
}

.goa-hero{
padding:65px 15px;
border-bottom-left-radius:30px;
border-bottom-right-radius:30px;
}

.goa-hero h1{
font-size:38px;
}

.goa-hero p{
font-size:16px;
line-height:1.8;
}

.join-btn,
.read-btn{
width:100%;
text-align:center;
}

.blog-container{
padding:28px;
}

.blog-container h2{
font-size:30px;
}

.blog-container p,
.blog-container ul li{
font-size:16px;
}

.bonus-table th,
.bonus-table td{
padding:14px;
font-size:14px;
}

.number-grid{
grid-template-columns:1fr;
}

.number-card{
padding:24px;
font-size:18px;
}

.faq-box{
padding:24px;
}

.faq-box h3{
font-size:22px;
}

.faq-box p{
font-size:16px;
}

.goa-telegram{
padding:28px 20px;
}

.goa-telegram-left img{
width:75px;
margin:auto;
}

.goa-telegram-center h2{
font-size:28px;
}

.goa-telegram-center p{
font-size:16px;
}

.goa-telegram-right a{
width:100%;
}

.goa-footer-links{
gap:15px;
}

}