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

body{
    font-family:Arial,sans-serif;
    background:#f8fafc;
}

header{
    background:#0F172A;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
}

.menu-toggle{
    display:none;
    font-size:32px;
    color:#fbbf24;
    cursor:pointer;
}

.logo{
    font-size:42px;
    font-weight:700;
    color:#FBBF24;
}

nav a{
    color:white;
    text-decoration:none;
    margin:0 15px;
}
nav a:hover{
    color:#fbbf24;
    transition:0.3s;
 }

.hero{
    height:700px;

    background:
    linear-gradient(rgba(0,0,0,.7),
    rgba(0,0,0,.7)),
    url('../images/backgrounds/horse-racing.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    color:white;

    display:flex;
    align-items:center;

    padding-left:80px;
}

.hero h1{
    font-size:72px;
    margin-bottom:20px;
}

.hero p{
    font-size:24px;
    margin-bottom:30px;
}

.hero button{
    width:220px;
    padding:18px;
    border:none;
    background:#FBBF24;
    font-weight:bold;
    cursor:pointer;
}

.buttons{
    display:flex;
    gap:10px;
}

.login-btn{
    background:transparent;
    color:white;
    border:1px solid white;
    padding:12px 20px;
    cursor:pointer;
}

.premium-btn{
    background:#fbbf24;
    color:#0f172a;
    border:none;
    padding:12px 20px;
    font-weight:bold;
    cursor:pointer;
}

.top-picks{
    padding:80px;
    background:#f8fafc;
}

.top-picks h2{
    font-size:48px;
    margin-bottom:40px;
    color:#0f172a;
}

.pick-container{
    display:flex;
    gap:40px;
    align-items:flex-start;
}

.pick-card{
    background:#071331;
    color:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);

    min-height:190px;
}

.pick-label{

    display:inline-block;

    background:#fbbf24;

    color:#0f172a;

    padding:6px 12px;

    font-size:12px;

    font-weight:bold;

    border-radius:4px;

    margin-bottom:15px;
}

.pick-card h3{
    font-size:26px;
    margin:10px 0;
}

.pick-card h4{
    font-size:42px;
    margin:10px 0 20px;
}

.pick-card p{
    margin-bottom:12px;
}

.value-score{
    color:#10b981;
    font-weight:bold;
    font-size:22px;
}

.performance-card{

    background:white;

    width:380px;

    padding:30px;

    border-radius:12px;

    box-shadow:0 5px 20px rgba(0,0,0,.15);

    align-self:flex-start;
}

.performance-card h3{

    font-size:28px;

    margin-bottom:25px;

    color:#0f172a;
}

.stat{

    display:flex;

    justify-content:space-between;

    margin-bottom:20px;

    padding-bottom:15px;

    border-bottom:1px solid #e5e7eb;
}

.stat strong{

    color:#10b981;

    font-size:20px;
}

.value-bets{

    padding:80px;

    background:white;
}

.value-bets h2{

    font-size:48px;

    margin-bottom:40px;

    color:#0f172a;
}

.value-table{

    width:100%;

    border-collapse:collapse;

    background:white;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 5px 20px rgba(0,0,0,.10);
}

.value-table th{

    background:#0f172a;

    color:white;

    text-align:left;

    padding:18px;
    font-size:16px;
    font-weight:600; 
}

.value-table td{

    padding:18px;

    border-bottom:1px solid #e5e7eb;
}

.value-table tr:hover{

    background:#f8fafc;
}

.score{

    color:#10b981;

    font-weight:bold;

    font-size:20px;
}

.racecards{

    padding:80px;

    background:#f8fafc;
}

.racecards h2{

    font-size:48px;

    margin-bottom:40px;

    color:#0f172a;
}

.racecard-grid{

    display:flex;

    gap:25px;
}

.racecourse-card{

    flex:1;

    background:#0f172a;

    color:white;

    padding:30px;

    border-radius:12px;

    box-shadow:0 5px 20px rgba(0,0,0,.15);

    transition:.3s;
    
    cursor:pointer;
    
    min-height:140px;
    
    
    
}

.racecourse-card:hover{

    transform:translateY(-5px);
    
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.racecourse-card h3{

    font-size:30px;

    margin-bottom:15px;

    color:#fbbf24;
}

.racecourse-card p{

    margin-bottom:10px;
}

.premium-banner{

    background:#0f172a;

    color:white;

    padding:60px 80px;

    margin-top:40px;
}

.premium-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;
    
    max-width:1400px;
    
    margin:0 auto;
}

.premium-left{

    max-width:450px;
}

.premium-left h2{

    font-size:42px;

    margin-bottom:15px;

    color:#fbbf24;
}

.premium-left p{

    line-height:1.6;
}

.premium-features ul{

    list-style:none;
}

.premium-features li{

    margin-bottom:12px;

    font-size:18px;
}

.premium-action{

    text-align:center;
}

.premium-join-btn{

    background:#fbbf24;

    color:#0f172a;

    border:none;

    padding:22px 40px;

    font-size:20px;

    font-weight:bold;

    cursor:pointer;

    border-radius:8px;
}

.premium-join-btn:hover{

    opacity:0.9;
    
    
}

.premium-action p{

    margin-top:15px;

    color:#d1d5db;
}

.latest-results{

    padding:80px;

    background:#f8fafc;
}

.latest-results h2{

    font-size:48px;

    margin-bottom:40px;

    color:#0f172a;
}

.results-grid{

    display:flex;

    gap:25px;
}

.result-card{

    flex:1;

    padding:40px 30px;

    border-radius:12px;

    color:white;

    text-align:center;
    
    min-height:140px;
}

.winner{
    background:#10b981;
}

.placed{
    background:#f59e0b;
}

.loser{
    background:#ef4444;
}

.result-card h3{

    font-size:28px;

    margin-bottom:10px;
}

.result-card span{

    font-weight:bold;

    font-size:18px;
}

.footer{

    background:#0f172a;

    color:white;

    padding-top:60px;
}

.footer-container{

    display:flex;

    justify-content:space-between;

    padding:0 80px 40px;

    gap:60px;
}

.footer-brand h3{

    color:#fbbf24;

    font-size:32px;

    margin-bottom:15px;
}

.footer-brand p{

    max-width:300px;

    line-height:1.6;
}

.footer-links{

    display:flex;

    flex-direction:column;
}

.footer-links h4,
.footer-contact h4{

    margin-bottom:15px;

    color:#fbbf24;
}

.footer-links a{

    color:white;

    text-decoration:none;

    margin-bottom:12px;
    
    font-size:16px;
}

.footer-links a:hover{

    color:#fbbf24;
}

.footer-contact p{

    margin-bottom:12px;
    
    font-size:16px;
}

.footer-bottom{

    text-align:center;

    border-top:1px solid rgba(255,255,255,.1);

    padding:20px;

    color:#cbd5e1;
}

.premium-join-btn:hover,
.yellow-btn:hover,
.premium-btn:hover{

    transform:translateY(-2px);

    transition:0.3s;
}

.page-hero{

    background:#0f172a;

    color:white;

    text-align:center;

    padding:80px 40px;
}

.page-hero h1{

    font-size:60px;

    margin-bottom:20px;
}

.page-hero p{

    max-width:800px;

    margin:auto;

    font-size:22px;
}

.featured-pick{

    padding:80px;

    background:#f8fafc;
}

.featured-card{

    background:white;

    padding:60px 50px;

    border-radius:12px;

    box-shadow:0 5px 20px rgba(0,0,0,.15);
    
    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:50px;
    
    margin:auto;
}

.featured-label{

    display:inline-block;

    background:#fbbf24;

    color:#0f172a;

    padding:10px 20px;

    font-weight:bold;

    margin-bottom:20px;
}

.featured-card h2{

    font-size:54px;

    color:#0f172a;
    
    white-space:nowrap;
}

.featured-card h3{

     font-size:22px;

    font-weight:bold;

    color:#64748b;

    margin-bottom:30px;
}

.featured-stats{

    display:flex;

    gap:40px;

    margin-bottom:30px;
}

.featured-stats div{

    display:flex;

    flex-direction:column;
}

.featured-stats strong{

    font-size:28px;

    color:#10b981;
}

.analysis{

    line-height:1.8;

    font-size:18px;
}

.value-bets-page{

    padding:0 80px 80px;
}

.value-bets-page h2{

    font-size:42px;

    margin-bottom:30px;

    color:#0f172a;
}

.analysis-box{

    max-width:500px;
}

.analysis{

    line-height:1.8;
}

.featured-race{

    font-size:22px;

    font-weight:bold;

    color:#64748b;

    margin-bottom:20px;
}

.meetings-section{

    padding:80px;
}

.meetings-section h2{

    font-size:42px;

    margin-bottom:40px;

    color:#0f172a;
}

.meetings-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.meeting-card{

    background:white;

    padding:40px;

    border-radius:12px;

    box-shadow:0 5px 20px rgba(0,0,0,.15);

    transition:0.3s;
}

.meeting-card:hover{

    transform:translateY(-5px);
}

.meeting-card h3{

    font-size:30px;

    color:#0f172a;

    margin-bottom:20px;
}

.meeting-card p{

    margin-bottom:10px;
}

.meeting-card button{

    margin-top:20px;

    width:100%;

    padding:15px;

    border:none;

    background:#fbbf24;

    font-weight:bold;

    cursor:pointer;
    
}
    
.meeting-card button:hover{

    background:#eab308;

    transition:0.3s;
}

.featured-race-section{

    padding:80px;
}

.featured-race-section h2{

    font-size:42px;

    margin-bottom:30px;

    color:#0f172a;
}

.featured-race-card{

    background:white;

    padding:50px;

    border-radius:12px;

    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.featured-race-card h3{
    font-size:32px;
    color:#0f172a;
    margin-bottom:10px;
}

.race-picks{

    display:flex;

    gap:20px;

    margin-top:30px;
}

.pick-box{
    background:#071331;
    color:white;
    padding:25px;
    border-radius:12px;
    flex:1;
    min-height:160px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.pick-box span{
    color:#fbbf24;
    font-weight:bold;
    font-size:14px;
}

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

.featured-race-card .yellow-btn{
    margin-top:25px;
}

.yellow-btn{
    background:#fbbf24;
    color:#000;
    border:none;
    padding:16px 32px;
    border:none;
    border-radius:8px;
    font-weight:700;
    font-size:16px;
    cursor:pointer;
}

.featured-race-card .yellow-btn{
    display:block;
    margin:40px auto 0;
}

.results-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:30px;
}

.result-card{
    padding:30px;
    border-radius:12px;
    color:white;
    text-align:center;
}

.winner{
    background:#10b981;
}

.placed{
    background:#f59e0b;
}

.loser{
    background:#ef4444;
}

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

.stats-hero {
    text-align: center;
    margin-bottom: 50px;
}

.stats-hero h1 {
    font-size: 52px;
    color: #0a1735;
    margin-bottom: 10px;
}

.stats-hero p {
    color: #666;
    font-size: 18px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.stat-box{
    background:white;
    padding:30px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
}

.stat-box h3{
    color:#10b981;
    font-size:2rem;
    margin-bottom:10px;
}

.results-section,
.stats-summary,
.long-term-stats{
    padding:60px 0;
}

.results-section h2,
.stats-summary h2,
.long-term-stats h2{
    font-size:2rem;
    margin-bottom:30px;
    color:#0f172a;
}

.container{
    width:90%;
    max-width:1400px;
    margin:0 auto;
}

.result-badge{
    display:inline-block;
    margin-top:10px;
    font-weight:bold;
    padding:6px 12px;
    background:rgba(255,255,255,.2);
    border-radius:20px;
}

.analysis-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
}

.selection-box,
.verdict-box,
.danger-box,
.value-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.selection-box {
    border-left: 6px solid #ffc107;
}

.verdict-box {
    border-left: 6px solid #28a745;
}

.danger-box {
    border-left: 6px solid #dc3545;
}

.value-box {
    border-left: 6px solid #007bff;
}

.selection-box h2,
.verdict-box h2,
.danger-box h2,
.value-box h2 {
    margin-top: 0;
}

.selection-box ul {
    padding-left: 20px;
}

.selection-box li {
    margin-bottom: 8px;
}

.analysis-header {
    text-align: center;
    margin-bottom: 30px;
}

.analysis-header h1 {
    font-size: 36px;
    color: #0a1735;
    margin-bottom: 10px;
}

.analysis-header p {
    color: #666;
    font-size: 18px;
}

.selection-box h3 {
    font-size: 30px;
    color: #0a1735;
    margin-bottom: 15px;
}


.tip-details {
    margin: 15px 0;
}

.odds {
    background: #ffc107;
    color: #000;
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: bold;
}

.confidence {
    background: #28a745;
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    margin-left: 10px;
}

.premium-cta {
    text-align: center;
    margin: 40px 0;
}

.premium-btn {
    background: #ffc107;
    color: #000;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
}

.premium-btn:hover {
    transform: translateY(-2px);
}

.history-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.history-table th {
    background: #0a1735;
    color: white;
    padding: 15px;
    text-align: left;
}

.history-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.history-table tr:hover {
    background: #f8f9fa;
}

.history-section {
    max-width: 1200px;
    margin: 50px auto;
}

.results-summary {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.results-summary h3 {
    margin-top: 0;
    color: #0a1735;
}

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

.premium-hero {
    text-align: center;
    margin-bottom: 50px;
}

.premium-hero h1 {
    font-size: 52px;
    color: #0a1735;
}

.premium-hero p {
    font-size: 20px;
    color: #666;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.benefit-card {
    background: white;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    font-weight: bold;
}

.premium-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.pricing-card {
    background: white;
    max-width: 500px;
    margin: 0 auto 60px;
    padding: 40px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border:3px solid #fbbf24;
}

.price {
    font-size: 50px;
    font-weight: bold;
    color: #ffc107;
    margin: 20px 0;
}

.price span {
    font-size: 20px;
    color: #666;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-card li {
    margin: 12px 0;
}

.join-btn {
    display: inline-block;
    background: #ffc107;
    color: #000;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.testimonial-section {
    text-align: center;
}

.testimonial {
    background: white;
    padding: 25px;
    margin: 20px auto;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
}

.stat-card h2{
    font-size:2rem;
    color:#10B981;
    margin-bottom:15px;
}

.table-section {
    margin: 50px 0;
}

.table-section h2 {
    margin-bottom: 20px;
}

.insights-card {
    max-width: 900px;
    margin: 60px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.insights-card h2 {
    margin-top: 0;
    color: #0a1735;
}
.result-win {
    color: #18b67d;
    font-weight: bold;
}

.result-place {
    color: #f5a623;
    font-weight: bold;
}

.result-loss {
    color: #e74c3c;
    font-weight: bold;
}

.race-card {
    background: #ffffff;
    color: #1b2338;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    margin-bottom: 30px;
}

.race-header{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:20px;
}

.race-header h2{
    color:#FBBF24;
    margin-bottom:10px;
}

.race-time{
    background:#16213e;
    color:white;
    padding:10px 18px;
    border-radius:8px;
    font-size:24px;
    font-weight:700;
}

.race-table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
}

.race-table th{
    background:#0F172A;
    color:#FBBF24;
    padding:12px;
    font-size:16px;
}

.race-table td{
    padding:12px;
    border-bottom:1px solid #2c3e50;
    text-align:center;
    font-size:16px;
}

.race-table tr:hover{
    background:#203354;
}

.top-pick{
    background:rgba(251,191,36,.15);
}

.ai-selection{

background:#fffaf0;

border-left:6px solid #fbbf24;

padding:20px;

border-radius:8px;

margin-top:20px;

}

.meeting-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 40px;
}

.info-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.info-box h4 {
    color: #64748b;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.info-box p {
    color: #0F172A;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.odds {
    background: #dcfce7;
    color: #166534;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: bold;
}

.rating {
    color: #FBBF24;
    font-size: 18px;
    letter-spacing: 2px;
}

.analysis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 50px;
    margin-top: 30px;
}

.analysis-grid div {
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    border-left: 5px solid #FBBF24;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.card-icon{
    font-size:48px;
    margin-bottom:15px;
}

.stat-card p{
    font-size:1rem;
    line-height:1.6;
    color:#555;
}

/* AI Analysis */

.ai-analysis{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:30px;
}

.analysis-card{
    background:#112240;
    border:1px solid rgba(255,191,36,.25);
    border-radius:12px;
    padding:20px;
    transition:.3s;
}

.analysis-card:hover{
    transform:translateY(-5px);
    border-color:#FBBF24;
}

.analysis-card h3{
    color:#FBBF24;
    margin-bottom:15px;
}

.analysis-card h4{
    color:#fff;
    margin-bottom:10px;
    font-size:22px;
}

.analysis-card p{
    color:#d6d6d6;
    line-height:1.6;
}

.excellent-value{
    color:#22c55e;
    font-weight:bold;
    margin-top:15px;
}



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

@media (max-width: 768px) {

    /* Navigation */

    nav {
        flex-direction: column;
        gap: 15px;
    }

    /* Headings */

    h1 {
        font-size: 2rem !important;
    }

    /* Stats cards */

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

    /* Results cards */

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

    /* Premium features */

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

    /* Racecourse cards */

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

    /* Tables */

    table {
        font-size: 14px;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    /* Top pick section */

    .top-pick-card {
        flex-direction: column;
        text-align: center;
    }

    /* General containers */

    .container,
    .stats-container,
    .analysis-container {
        padding: 15px;
    }


    .hero-content h1,
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }


    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons a,
    .hero-buttons button {
        width: 100%;
    }



    .pick-container {
    display: grid;
    grid-template-columns: 1fr;
    }



    .top-picks {
        padding: 40px 20px;
    }

    .top-picks h2 {
        font-size: 2rem;
        line-height: 1.2;
        text-align: center;
    }


    .table-container {
        overflow-x: auto;
    }

    table {
        min-width: 600px;
    }


    .top-picks h2,
    .value-bets h2,
    h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        word-break: break-word;
    }


    .racecard-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }


    .racecards h2,
    .racecard-section h2,
    h2 {
        font-size: 2rem;
        line-height: 1.2;
        word-break: normal;
    }



    .racecourse-card {
        width: 100%;
        box-sizing: border-box;
    }



    .racecourse-card {
        width: 100%;
        padding: 20px;
    }

    .racecourse-card h3 {
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .hero-content {
    width: 90%;
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}



    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 25px;
    }



    
    #mobileMenu {
    display: none;
}

#mobileMenu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #00153a;
    padding: 20px 0;
    text-align: center;
    z-index: 999;
}

#mobileMenu a {
    color: white;
    padding: 15px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

#mobileMenu a:hover {
    color: #fbbf24;
}

    .login-btn,
    .join-btn,
    .premium-btn {
        display: none;
    }



    header{
        justify-content:space-between;
        padding:15px 20px;
    }

    .buttons{
    display:none;
}

    .menu-toggle{
        display:block;
    }

    
    

}









    

