/* GamingPlatforma Premium Entertainment - Orange & Purple Theme */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0d0d0d;
    background-attachment: fixed;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at 20% 30%, rgba(147, 51, 234, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(255, 107, 53, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    width: 1px;
    height: 1px;
    background: #9333ea;
    box-shadow:
        70px 110px #9333ea, 170px 80px #ff6b35, 270px 190px #a855f7,
        370px 100px #9333ea, 120px 300px #ff6b35, 470px 170px #a855f7,
        220px 390px #9333ea, 320px 340px #ff6b35, 420px 270px #a855f7,
        520px 80px #c084fc, 100px 490px #fb923c, 600px 170px #c084fc,
        180px 600px #ff6b35, 700px 270px #9333ea, 280px 700px #a855f7,
        50px 140px #c084fc, 140px 50px #fb923c, 540px 440px #9333ea,
        440px 540px #ff6b35, 740px 140px #a855f7, 140px 740px #c084fc;
    animation: sparkle 2.5s infinite ease-in-out alternate;
    z-index: 0;
    inset: 0;
    pointer-events: none;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.9; }
}

.gp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

header {
    background: #0a0a0a;
    border-bottom: 2px solid #ff6b35;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5), 0 0 40px rgba(147, 51, 234, 0.3);
}

.gp-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gp-logo {
    font-family: 'Georgia', serif;
    font-size: 24px;
    font-weight: 900;
    color: #ff6b35;
    letter-spacing: 1px;
    text-shadow: 0 0 10px #ff6b35, 0 0 20px #ff6b35, 0 0 30px #ff6b35;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gp-icon {
    font-size: 30px;
    filter: drop-shadow(0 0 10px #fb923c);
}

.gp-badge {
    background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 900;
    font-size: 11px;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.7);
}

.gp-hero {
    padding: 30px 0;
}

.gp-hero-content {
    border: 2px solid #ff6b35;
    border-radius: 10px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(147, 51, 234, 0.08) 100%);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.4), inset 0 0 30px rgba(147, 51, 234, 0.1);
}

.gp-hero-title {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.2;
    color: #fff;
}

.gp-hero-title .gp-highlight {
    color: #fb923c;
    text-shadow: 0 0 15px #ff6b35, 0 0 30px #ff6b35;
}

.gp-hero-subtitle {
    text-align: center;
    font-size: 15px;
    color: #aaa;
    margin-bottom: 20px;
}

.gp-notice {
    border: 2px solid #a855f7;
    border-radius: 8px;
    padding: 15px;
    background: rgba(168, 85, 247, 0.12);
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.gp-notice-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.gp-notice-text {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.5;
}

.gp-notice-text strong {
    color: #c084fc;
    font-weight: 900;
    text-shadow: 0 0 10px #c084fc;
}

.gp-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.gp-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid;
    background: transparent;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gp-btn:hover {
    transform: translateY(-3px);
}

.gp-btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f97316 100%);
    color: #fff;
    border-color: #ff6b35;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.gp-btn-primary:hover {
    background: linear-gradient(135deg, #f97316 0%, #ff6b35 100%);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.9);
}

.gp-btn-secondary {
    background: transparent;
    color: #9333ea;
    border-color: #9333ea;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.4);
}

.gp-btn-secondary:hover {
    background: rgba(147, 51, 234, 0.2);
    box-shadow: 0 0 25px rgba(147, 51, 234, 0.6);
}

.gp-cards {
    padding: 30px 0;
}

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

.gp-card {
    border: 2px solid #2a2a2a;
    border-radius: 8px;
    padding: 20px 15px;
    background: rgba(147, 51, 234, 0.06);
    text-align: center;
    transition: all 0.3s;
}

.gp-card:hover {
    border-color: #9333ea;
    box-shadow: 0 0 25px rgba(147, 51, 234, 0.5);
    transform: translateY(-5px);
}

.gp-card-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.gp-card-title {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ff6b35;
    text-shadow: 0 0 10px #ff6b35;
}

.gp-card-text {
    font-size: 13px;
    color: #aaa;
    line-height: 1.5;
}

.gp-section {
    padding: 30px 0;
}

.gp-section-title {
    font-family: 'Georgia', serif;
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    color: #fb923c;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px #ff6b35, 0 0 30px #ff6b35;
}

.gp-game-card {
    border: 2px solid #ff6b35;
    border-radius: 10px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(147, 51, 234, 0.06) 100%);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 0 35px rgba(255, 107, 53, 0.4), inset 0 0 35px rgba(147, 51, 234, 0.1);
}

.gp-game-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.gp-game-title {
    font-family: 'Georgia', serif;
    font-size: 26px;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 12px;
    text-shadow: 0 0 15px #ff6b35;
}

.gp-game-desc {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.6;
}

.gp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.gp-feature {
    border: 2px solid #2a2a2a;
    border-radius: 8px;
    padding: 20px 15px;
    background: rgba(255, 107, 53, 0.06);
    text-align: center;
    transition: all 0.3s;
}

.gp-feature:hover {
    border-color: #fb923c;
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.5);
    transform: translateY(-5px);
}

.gp-feature-icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.gp-feature-title {
    font-size: 16px;
    font-weight: 900;
    color: #fb923c;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #fb923c;
}

.gp-feature-text {
    font-size: 13px;
    color: #aaa;
    line-height: 1.5;
}

.gp-info-box {
    border: 2px solid #2a2a2a;
    border-radius: 8px;
    padding: 20px;
    background: rgba(147, 51, 234, 0.06);
    margin-bottom: 15px;
}

.gp-info-title {
    font-size: 18px;
    font-weight: 900;
    color: #9333ea;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #9333ea;
}

.gp-info-text {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
}

.gp-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 15px;
}

.gp-support-card {
    border: 2px solid #2a2a2a;
    border-radius: 8px;
    padding: 20px 15px;
    background: rgba(255, 107, 53, 0.06);
    text-align: center;
    transition: all 0.3s;
}

.gp-support-card:hover {
    border-color: #ff6b35;
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.5);
}

.gp-support-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.gp-support-title {
    font-size: 17px;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 8px;
    text-shadow: 0 0 10px #ff6b35;
}

.gp-support-text {
    font-size: 13px;
    color: #aaa;
}

footer {
    background: #0a0a0a;
    border-top: 2px solid #9333ea;
    padding: 30px 0 15px;
    margin-top: 40px;
    box-shadow: 0 0 25px rgba(147, 51, 234, 0.5);
}

.gp-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.gp-footer-col h3 {
    color: #9333ea;
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: 900;
    text-shadow: 0 0 10px #9333ea;
}

.gp-footer-col ul {
    list-style: none;
}

.gp-footer-col li {
    margin-bottom: 8px;
}

.gp-footer-col a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.gp-footer-col a:hover {
    color: #ff6b35;
    text-shadow: 0 0 10px #ff6b35;
}

.gp-footer-notice {
    color: #e0e0e0;
    font-size: 13px;
    line-height: 1.5;
}

.gp-footer-notice strong {
    color: #ff6b35;
    text-shadow: 0 0 8px #ff6b35;
}

.gp-legal-box {
    border: 2px solid #2a2a2a;
    border-radius: 8px;
    padding: 20px;
    background: rgba(147, 51, 234, 0.06);
    margin-bottom: 20px;
}

.gp-legal-title {
    font-size: 17px;
    font-weight: 900;
    color: #c084fc;
    text-align: center;
    margin-bottom: 16px;
    text-transform: uppercase;
    text-shadow: 0 0 12px #c084fc;
}

.gp-legal-item {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.6;
}

.gp-legal-item strong {
    color: #ff6b35;
    text-shadow: 0 0 8px #ff6b35;
}

.gp-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #2a2a2a;
}

.gp-footer-bottom p {
    color: #888;
    font-size: 12px;
    margin-bottom: 8px;
}

.gp-footer-company {
    font-size: 13px;
    color: #bbb;
    margin: 12px 0;
}

.gp-footer-alert {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: #aaa;
    flex-wrap: wrap;
}

.gp-footer-alert strong {
    color: #ff6b35;
    text-shadow: 0 0 8px #ff6b35;
}

.gp-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    inset: 0;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.97);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gp-overlay-content {
    background: linear-gradient(185deg, #0d0d0d 0%, #000 100%);
    margin: 15px auto;
    padding: 20px 15px 15px;
    border: 3px solid #ff6b35;
    border-radius: 12px;
    width: 96%;
    max-width: 1250px;
    position: relative;
    box-shadow: 0 0 45px rgba(255, 107, 53, 0.6);
    max-height: 96vh;
    overflow-y: auto;
}

.gp-game-wrapper {
    width: 100%;
    height: 80vh;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.gp-game-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.gp-close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.gp-close:hover {
    color: #ff6b35;
    text-shadow: 0 0 15px #ff6b35;
}

.gp-home-button {
    position: absolute;
    top: 14px;
    left: 16px;
    background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.8);
}

.gp-home-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(147, 51, 234, 1);
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.gp-home-button:active {
    transform: translateY(-1px);
}

.gp-overlay-title {
    font-family: 'Georgia', serif;
    font-size: 20px;
    font-weight: 900;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 12px;
    text-transform: uppercase;
    padding: 0 90px;
    text-shadow: 0 0 15px #ff6b35;
}

.gp-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
    padding: 25px;
}

.gp-modal-content {
    background: linear-gradient(185deg, #0d0d0d 0%, #000 100%);
    max-width: 800px;
    margin: 0 auto;
    border: 3px solid #c084fc;
    border-radius: 12px;
    box-shadow: 0 0 45px rgba(192, 132, 252, 0.6);
}

.gp-modal-header {
    background: rgba(192, 132, 252, 0.12);
    padding: 18px 22px;
    border-bottom: 2px solid #c084fc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gp-modal-header h2 {
    color: #c084fc;
    font-size: 22px;
    margin: 0;
    font-weight: 900;
    text-shadow: 0 0 15px #c084fc;
}

.gp-modal-close {
    color: #aaa;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.gp-modal-close:hover {
    color: #c084fc;
    text-shadow: 0 0 15px #c084fc;
}

.gp-modal-body {
    padding: 25px;
    max-height: 70vh;
    overflow-y: auto;
    color: #bbb;
    line-height: 1.7;
}

.gp-modal-body h3 {
    color: #ff6b35;
    font-size: 18px;
    margin: 22px 0 12px;
    font-weight: 900;
    text-shadow: 0 0 10px #ff6b35;
}

.gp-modal-body h3:first-child {
    margin-top: 0;
}

.gp-modal-body p {
    margin-bottom: 14px;
    font-size: 14px;
}

.gp-modal-body ul {
    margin: 12px 0 14px 22px;
    list-style: disc;
}

.gp-modal-body li {
    margin-bottom: 8px;
    font-size: 13px;
}

.gp-modal-body strong {
    color: #9333ea;
    font-weight: 900;
    text-shadow: 0 0 8px #9333ea;
}

.gp-modal-body a {
    color: #c084fc;
    text-decoration: underline;
    text-shadow: 0 0 8px #c084fc;
}

.gp-modal-body a:hover {
    color: #ff6b35;
    text-shadow: 0 0 10px #ff6b35;
}

@media (max-width: 768px) {
    .gp-hero-title {
        font-size: 26px;
    }

    .gp-hero-subtitle {
        font-size: 13px;
    }

    .gp-section-title {
        font-size: 22px;
    }

    .gp-cards-grid,
    .gp-features-grid,
    .gp-support-grid {
        grid-template-columns: 1fr;
    }

    .gp-overlay-title {
        font-size: 16px;
        padding: 0 70px;
    }

    .gp-home-button {
        font-size: 11px;
        padding: 8px 12px;
    }
}
