body {
    background-image: url("../img/gamesguides-App.png");
    background-image: url("../img/App.png");
    background-color: #000000;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-weight: normal;
}


/* nieuwe navbar */

nav {
    padding: 5px 30px;
    background-color: #000000;
    border-bottom: 4px solid #090909;
}

.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-self: start;

}
.logo img {
    padding: 10px 0 0 0;
}


.logo img {
    padding: 10px 0 0 0;
}

.logo p {
    font-size: 24px;
    background: linear-gradient(to right, #8B5CF6, #3B82F6, #06B6D4);
    background-clip: text;
    color: transparent;
    
}
.logo a {
    text-decoration: none;

}

.links {
    display: flex;
    gap: 20PX;
    gap: 20px;
    justify-self: center;
}

.links a {
    text-decoration: none;
    color: #D1D5DC;
    font-size: 16px;
}

.links a:hover {
    opacity: 0.6;
}

.nav a.icon {
    display: none;
    color: #D1D5DC;
    font-size: 24px;
    padding: 10px;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    min-height: 60vh;
    text-align: center;
    padding: 0px 20px;
}

.hero-content {
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.master-titel{
    display: flex;
    height: auto;
    width: 32%;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 250px;
    border: 1px solid rgba(173, 70, 255, 0.50);
    background: linear-gradient(90deg, rgba(152, 16, 250, 0.30) 0%, rgba(0, 146, 184, 0.30) 100%);
    padding: 15px 0;
}
.master-titel    p{
    color: rgba(83, 234, 253, 1);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    margin: 0;
}




.master-titel img {
    width: 20px;
    height: 20px;
}

.hero h1 {
background: linear-gradient(90deg, #C27AFF 0%, #FB64B6 50%, #00D3F2 100%);
background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 60px;
    margin: 20px 0;
    font-weight: normal;
}

.subtitle {
    font-size: 18px;
    color: #9CA3AF;
    margin: 0;
    line-height: 1.6;
}

/* Games Section */
.games {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.games-title {
    text-align: center;
    font-size: 48px;
background: linear-gradient(90deg, #00D3F2 0%, #C27AFF 75%,#C27AFF 100%);
background-clip: text;
    color: transparent;
    margin-bottom: 50px;
    font-weight: normal;
}

.game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.game-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.09), rgba(20, 20, 20, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
    min-height: 400px;
}

.game-card:hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 100px;
}

.rating {
    background: rgba(0, 0, 0, 0.6);
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.rating img {
    width: 16px;
    height: 16px;
}

.icon-badge {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.icon-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.card-body {
    flex-grow: 1;
    margin-bottom: 20px;
}

.card-body h3 {
    color: white;
    font-size: 24px;
    margin: 0 0 10px 0;
}

.card-body p {
    color: #9CA3AF;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.card-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stats {
    display: flex;
    gap: 15px;
    font-size: 12px;
}

.playing {
    color: #06B6D4;
}

.rtp {
    color: #9CA3AF;
}

.play-btn {
    width: 100%;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.3s;
}

.play-btn:hover {
    opacity: 0.9;
}

.pink-btn {
    background: linear-gradient(90deg, #A855F7, #EC4899);
}

.blue-btn {
    background: linear-gradient(90deg, #06B6D4, #3B82F6);
}

.orange-btn {
    background: linear-gradient(90deg, #EC4899, #F97316);
}

.purple-btn {
    background: linear-gradient(90deg, #8B5CF6, #A855F7);
}

/* Strategy Guides Section */
.strategy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.strategy-title {
    text-align: center;
    font-size: 48px;
    background: linear-gradient(to right, #06B6D4, #A37CFF);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    font-weight: bold;
}

.strategy-subtitle {
    text-align: center;
    font-size: 16px;
    color: #9CA3AF;
    margin-bottom: 50px;
}

.guide-container {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}

.guide-header {
    background: linear-gradient(90deg, #A855F7, #EC4899);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.guide-header-blue {
    background: linear-gradient(90deg, #06B6D4, #3B82F6);
}

.guide-header-orange {
    background: linear-gradient(90deg, #EC4899, #F97316);
}

.guide-header-purple {
    background: linear-gradient(90deg, #8B5CF6, #A855F7);
}

.guide-header img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
}

.guide-header-text h3 {
    color: white;
    font-size: 32px;
    margin: 0 0 5px 0;
}

.guide-header-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.guide-content {
    padding: 40px 30px;
}

.guide-section {
    margin-bottom: 40px;
}

.guide-section:last-child {
    margin-bottom: 0;
}

.guide-section h4 {
    color: #06B6D4;
    font-size: 24px;
    margin: 0 0 15px 0;
}

.guide-section p {
    color: #9CA3AF;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* Essential Gaming Tips Section */
.tips {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.tips-title {
    text-align: center;
    font-size: 48px;
    background: linear-gradient(to right, #06B6D4, #A37CFF);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 50px;
    font-weight: bold;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.tip-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.323), rgba(20, 20, 20, 0.252));
    border: 1px solid rgba(255, 255, 255, 0.207);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.tip-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.tip-card h3 {
    color: white;
    font-size: 24px;
    margin: 0 0 15px 0;
}

.tip-card p {
    color: #9CA3AF;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* Ready to Play Section */
.ready {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 100px 20px;
}

.ready-container {
border-radius: 16px;
border: 1px solid rgba(173, 70, 255, 0.50);
background: linear-gradient(90deg, rgba(152, 16, 250, 0.30) 0%, rgba(0, 146, 184, 0.30) 100%);

    padding: 60px 40px;
    text-align: center;
}

.ready-container h2 {
    color: white;
    font-size: 48px;
    margin: 0 0 15px 0;
    font-weight: bold;
}

.ready-container p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin: 0 0 30px 0;
}

.ready-btn {
border-radius: 10px;
background: linear-gradient(90deg, #9810FA 0%, #E60076 100%);
box-shadow: 0 10px 15px -3px rgba(173, 70, 255, 0.50), 0 4px 6px -4px rgba(173, 70, 255, 0.50);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;

    cursor: pointer;
    transition: opacity 0.3s;
        border-radius: 10px;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.ready-btn:hover {
    transform: scale(1.1);
    background-position: 0%;
}

footer {
    background-color: #000000;
    padding: 30px 0;
    text-align: center;
    border-top: 4px solid #090909;
}
footer .footer-content p {
    margin: 0;
    color: #666666;
    font-size: 14px;
}
footer .footer-content span {
    margin-top: 5px;
    color: #666666;
    font-size: 12px;
}
body{
    font-weight: normal;
}
.logo p{
    font-weight: bold;
}

/* tablet 768 px */

@media (max-width: 768px) {



    .nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
.links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #000000;
        padding: 20px 0;
        gap: 0;
        z-index: 1000;
    }

    .links a {
        display: block;
        padding: 15px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .nav a.icon {
        display: block;
        position: static;
    }

    /* Games: 2 kolommen */
    .game-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Tips: 2 kolommen */
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Alles compacter */
    .hero h1 {
        font-size: 42px;
    }

    .games-title,
    .strategy-title,
    .tips-title {
        font-size: 36px;
    }

    .guide-header-text h3 {
        font-size: 26px;
    }

    .ready-container h2 {
        font-size: 36px;
    }
}


/* telefoon 600px */

@media (max-width: 600px) {




    .nav{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #000000;
        padding: 20px 0;
        gap: 0;
        z-index: 1000;
    }

    .links a {
        display: block;
        padding: 15px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .nav a.icon {
        display: block;
        position: static;
    }
    /* Alles 1 kolom */
    .game-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    nav {
        padding: 10px 15px;
    }

    .hero {
        min-height: 40vh;
        padding: 20px 15px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 14px;
    }

    .master-titel {
        font-size: 12px;
        padding: 10px 16px;
    }

    .games {
        padding: 40px 15px;
    }

    .game-card {
        min-height: auto;
        padding: 16px;
    }

    .card-header {
        margin-bottom: 40px;
    }

    .stats {
        flex-direction: column;
        gap: 6px;
    }

    .strategy {
        padding: 40px 15px;
    }

    .guide-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .guide-header img {
        width: 40px;
        height: 40px;
    }

    .guide-header-text h3 {
        font-size: 22px;
    }

    .guide-section h4 {
        font-size: 20px;
    }

    .tips {
        padding: 40px 15px;
    }

    .tip-card {
        padding: 20px;
    }

    .tip-card h3 {
        font-size: 20px;
    }

    .ready {
        padding: 40px 15px 60px 15px;
    }

    .ready-container {
        padding: 40px 20px;
    }

    .ready-container h2 {
        font-size: 28px;
    }

    .ready-container p {
        font-size: 14px;
    }

    .ready-btn {
        font-size: 16px;
        padding: 12px 30px;

    }
 

    footer .footer-content p {
        font-size: 12px;
    }

    footer .footer-content span {
        font-size: 10px;
    }
}
