[v-cloak] {
    display: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    min-height: 100vh;
    padding-bottom: 30px;
}

header {
    text-align: center;
    padding: 12px;
    background: rgba(0, 0, 0, .7);
    border-bottom: 3px solid #ff9d00;
}

.logo {
    max-width: 180px;
    margin: 0 auto 8px;
}

.logo img {
    width: 100%;
    height: auto;
}

h1 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .5);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px;
}

.section-title {
    text-align: center;
    margin: 20px 0 12px;
    font-size: 1.4rem;
    color: #ff9d00;
    position: relative;
    padding-bottom: 6px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 2px;
    background: #ff9d00;
}

.user-id-section {
    background: rgba(255, 255, 255, .1);
    border-radius: 6px;
    padding: 12px;
    margin: 12px 0;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .2);
}

.simple-id-form {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.simple-id-input {
    padding: 14px 18px;
    border-radius: 50px;
    border: 2px solid #ff9d00;
    background: rgba(0, 0, 0, .3);
    color: #fff;
    font-size: 1rem;
    width: 280px;
    transition: .3s;
}

.simple-id-input:focus {
    outline: none;
    border-color: #ff6600;
    box-shadow: 0 0 10px rgba(255, 157, 0, .5);
}

.add-btn {
    background: linear-gradient(to right, #ff9d00, #ff6600);
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: .3s;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(255, 157, 0, .3);
}

.add-btn:hover {
    background: linear-gradient(to right, #ff6600, #ff9d00);
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(255, 157, 0, .4);
}

.id-confirmation {
    display: none;
    margin-top: 12px;
    padding: 10px;
    background: rgba(0, 0, 0, .3);
    border-radius: 6px;
    border-left: 3px solid #4CAF50;
}

.id-confirmation p {
    margin: 3px 0;
    font-size: .85rem;
}

.id-value {
    font-weight: bold;
    color: #ff9d00;
    font-size: 1rem;
}

.change-id-btn {
    background: transparent;
    color: #00c6ff;
    border: 1px solid #00c6ff;
    padding: 5px 10px;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 6px;
    transition: .3s;
    font-size: .8rem;
}

.change-id-btn:hover {
    background: rgba(0, 198, 255, .1);
}

.skins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.skin-card {
    background: rgba(255, 255, 255, .1);
    border-radius: 8px;
    overflow: hidden;
    transition: .3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
}

.skin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 157, 0, .3);
}

.skin-image {
    width: 100%;
    height: auto;
    max-width: 218px;
    max-height: 286px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #ff9d00;
}

.skin-info {
    padding: 8px;
    text-align: center;
    width: 100%;
}

.skin-desc {
    font-size: .8rem;
    margin-bottom: 8px;
    min-height: 36px;
}

.claim-btn {
    background: linear-gradient(to right, #ff9d00, #ff6600);
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: .3s;
    width: 100%;
    font-size: .9rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.claim-btn:hover {
    background: linear-gradient(to right, #ff6600, #ff9d00);
    transform: scale(1.05);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 157, 0, .4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 157, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 157, 0, 0);
    }
}

.skeleton .skin-image,
.skeleton-box {
    background: linear-gradient(90deg, #2b3740 25%, #3c4a55 50%, #2b3740 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.2s ease-in-out infinite;
    border: none;
    width: 100%;
    min-height: 250px;
}

.skeleton-text {
    height: 14px;
    border-radius: 4px;
    background: linear-gradient(90deg, #2b3740 25%, #3c4a55 50%, #2b3740 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.2s ease-in-out infinite;
    margin-bottom: 6px;
}

.skeleton .claim-btn {
    background: #555;
    cursor: default;
    box-shadow: none;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.code-generator {
    background: rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: 15px;
    margin-top: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}

.generator-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ff9d00;
}

.code-display {
    background: rgba(0, 0, 0, .3);
    padding: 12px;
    border-radius: 5px;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin: 15px 0;
    font-family: monospace;
    border: 1px dashed #ff9d00;
}

.generate-btn {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: .3s;
    margin-top: 8px;
    font-size: .9rem;
}

.generate-btn:hover {
    background: linear-gradient(to right, #0072ff, #00c6ff);
    transform: scale(1.05);
}

.disclaimer {
    text-align: center;
    margin-top: 25px;
    font-size: .8rem;
    color: #ccc;
}

.notification {
    position: fixed;
    top: 15px;
    right: 15px;
    padding: 10px 12px;
    background: #4CAF50;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
    transform: translateX(150%);
    transition: transform .3s ease-out;
    z-index: 1000;
    font-size: .85rem;
}

.notification.show {
    transform: translateX(0);
}

@media (max-width:768px) {
    .skins-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    h1 {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .simple-id-form {
        flex-direction: column;
    }

    .simple-id-input {
        width: 100%;
        max-width: 280px;
        padding: 12px 16px;
        font-size: .95rem;
    }

    .skin-card {
        padding: 6px;
    }

    .skin-desc {
        font-size: .75rem;
        min-height: 32px;
    }

    .claim-btn {
        padding: 8px 12px;
        font-size: .85rem;
    }

    .logo {
        max-width: 150px;
    }

    .add-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width:480px) {
    .container {
        padding: 10px;
    }

    .skins-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .skin-image {
        max-width: 100%;
        height: auto;
    }

    .skeleton .skin-image,
    .skeleton-box {
        min-height: 150px;
    }

    .code-display {
        font-size: 1.1rem;
        padding: 10px;
    }

    .section-title:after {
        width: 60px;
    }

    header {
        padding: 10px;
    }

    .logo {
        max-width: 130px;
    }

    h1 {
        font-size: 1.1rem;
    }

    .user-id-section {
        padding: 10px;
    }

    .simple-id-input {
        width: 100%;
        max-width: 250px;
        padding: 10px 14px;
        font-size: .9rem;
    }

    .add-btn {
        padding: 10px 20px;
        font-size: .95rem;
    }
}

.header-container {
    width: min(1200px, 96vw);
    margin: 10px auto 0;
    padding: 0 12px;
}

.custom-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 10px 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
}

.creator-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.creator-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff9d00;
}

.creator-name {
    font-size: .92rem;
    line-height: 1.35;
    color: #fff;
    opacity: .95;
}

.instagram-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: linear-gradient(135deg, #ff9d00, #ff6600);
    padding: 8px 12px;
    border-radius: 50px;
    color: #0b0b0f;
    font-weight: 700;
    font-size: .85rem;
    transition: transform .2s, box-shadow .2s;
    white-space: nowrap;
}

.instagram-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 157, 0, .3);
}

.instagram-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0);
}

.instagram-contact span {
    display: none;
}

@media (min-width:480px) {
    .instagram-contact span {
        display: inline;
    }
}

.footer-container {
    width: 100%;
    margin-top: 40px;
    background: rgba(0, 0, 0, .4);
    border-top: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
}

.custom-footer {
    width: min(1200px, 96vw);
    margin: 0 auto;
    padding: 30px 15px;
    text-align: center;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: .9rem;
    opacity: .8;
    transition: opacity .3s;
}

.footer-links a:hover {
    opacity: 1;
    color: #ff9d00;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    margin: 20px auto;
    width: 80%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: .3s;
}

.social-icon:hover {
    background: #ff9d00;
    transform: translateY(-3px);
}

.custom-footer p {
    font-size: .85rem;
    opacity: .6;
    margin-bottom: 10px;
}

.copyright {
    font-size: .8rem;
    color: #ff9d00;
    font-weight: 500;
}

.lang-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, .7);
    color: #ff9d00;
    border: 1px solid #ff9d00;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    z-index: 100;
    font-weight: bold;
    font-size: 0.8rem;
}

.betting-article {
    background: rgba(255, 255, 255, .05);
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    line-height: 1.6;
    font-size: 0.95rem;
    color: #e0e0e0;
}

.betting-article h2 {
    color: #ff9d00;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.betting-article h3 {
    color: #ffb74d;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.betting-article p {
    margin-bottom: 15px;
}

.betting-article ul,
.betting-article ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.betting-article li {
    margin-bottom: 5px;
}

.betting-article strong {
    color: #fff;
}

.betting-article img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
    display: block;
}


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

html, body{
width:100%;
max-width:100%;
overflow-x:hidden;
font-family:Arial, sans-serif;
}

img, video, iframe{
max-width:100%;
height:auto;
display:block;
}
