@font-face {
    font-family: 'ThinDesign';
    src: url('fonts/ThinDesign.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #151515;
    background-image: url('background.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #f2f2f2;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    height: 100%;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 21, 21, 0.7);
    z-index: 0;
    pointer-events: none;
}

.main-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    background: transparent;
}

/* Sections that will cover the background */
.footer {
    background: #151515 !important;
    position: relative;
    z-index: 2;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 0.2rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo img {
    height: 85px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-menu a {
    color: #f2f2f2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0 1rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #e30613;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #e30613;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(227, 6, 19, 0.5);
}

.nav-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.nav-login {
    margin-left: auto;
}

.login-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding: 0.8em 2em;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    user-select: none;
    overflow: hidden;
    color: white;
    z-index: 1;
    font-family: inherit;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.login-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 25%, 
        rgba(255, 255, 255, 0.5) 50%, 
        rgba(255, 255, 255, 0.3) 75%, 
        transparent 100%);
    transition: left 0.6s ease;
    z-index: 1;
}

.login-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e30613, #ff002b);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    z-index: -1;
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:hover::after {
    opacity: 1;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 6, 19, 0.4);
    border-color: rgba(227, 6, 19, 0.5);
}

.login-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
}

.login-btn span {
    position: relative;
    z-index: 2;
}

/* Play Now Button */
.hero-action {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.play-now-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding: 1em 3em;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    user-select: none;
    overflow: hidden;
    color: white;
    z-index: 1;
    font-family: inherit;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-now-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 25%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0.4) 75%, 
        transparent 100%);
    transition: left 0.6s ease;
    z-index: 1;
}

.play-now-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e30613, #ff002b);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    z-index: -1;
}

.play-now-btn:hover::before {
    left: 100%;
}

.play-now-btn:hover::after {
    opacity: 1;
}

.play-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 6, 19, 0.4);
    border-color: rgba(227, 6, 19, 0.5);
}

.play-now-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
}

.play-now-btn span {
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

@keyframes slideUpFromBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('backgroundseg.png');
    background-size: contain;
    background-position: center left;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
    animation: slideUpFromBottom 2s ease-out forwards;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    margin-left: 25%;
}

.hero-logo img {
    height: 80px;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h1 .highlight {
    color: #e30613;
}

.hero h1 .logo-hero {
    width: 700px;
    height: auto;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.8));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(50px);
    animation: logoFadeIn 1.5s ease-out 0.5s forwards;
}

.hero h1 .logo-hero:hover {
    transform: scale(1.05);
}

.hero h2 {
    font-family: 'ThinDesign', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    margin-top: -15px;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 5;
}

.cta-button {
    background: linear-gradient(45deg, #e30613, #ff002b);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(227, 6, 19, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #151515;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #e30613;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Velocity Scroll Text Section */
.parallax {
    overflow: hidden;
    background: #151515;
    position: relative;
    padding: 5px 0;
    height: 100px;
    display: flex;
    flex-direction: column;
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.scroller {
    display: flex;
    position: relative;
    z-index: 2;
    will-change: transform;
    height: 50%;
    align-items: center;
}

.scroller span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e30613;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-right: 50px;
    flex-shrink: 0;
    display: inline-block;
}

.scroller[data-direction="right"] span {
    color: #ff002b;
}

@media (min-width: 768px) {
    .parallax {
        height: 150px;
        padding: 15px 0;
        gap: 8px;
    }
    
    .scroller span {
        font-size: 2.5rem;
        margin-right: 80px;
    }
}



.premium-badge {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #e30613, #ff002b);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.5);
    z-index: 10;
}

.premium-btn {
    background: linear-gradient(45deg, #e30613, #ff002b);
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(227, 6, 19, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(227, 6, 19, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(227, 6, 19, 0.4);
    }
}

@keyframes cardSelectAnimation {
    0% {
        transform: translate(-50%, -50%) scale(1) rotateY(-15deg);
        opacity: 0.8;
        box-shadow: 0 10px 20px rgba(227, 6, 19, 0.2);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3) rotateY(5deg);
        opacity: 0.9;
        box-shadow: 0 25px 50px rgba(227, 6, 19, 0.3);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2) rotateY(0deg);
        opacity: 1;
        box-shadow: 0 30px 60px rgba(227, 6, 19, 0.4);
    }
}

@keyframes cardDeselectAnimation {
    0% {
        transform: translate(-50%, -50%) scale(1.2) rotateY(0deg);
        opacity: 1;
        box-shadow: 0 30px 60px rgba(227, 6, 19, 0.4);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.0) rotateY(-10deg);
        opacity: 0.7;
        box-shadow: 0 15px 30px rgba(227, 6, 19, 0.2);
    }
    100% {
        transform: scale(1) rotateY(0deg);
        opacity: 1;
        box-shadow: 0 5px 15px rgba(227, 6, 19, 0.1);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromSide {
    0% {
        opacity: 0;
        transform: translateX(-50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}



/* Diamantes Section */
.diamantes {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #151515;
}

.diamantes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

/* Diamond Icons */
.diamond-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.diamond-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.5;
    filter: hue-rotate(200deg) saturate(1.5) brightness(1.2);
}

.diamond-1 {
    top: 15%;
    left: 10%;
    transform: rotate(25deg);
}

.diamond-2 {
    top: 25%;
    right: 15%;
    transform: rotate(-45deg);
}

.diamond-3 {
    top: 45%;
    left: 5%;
    transform: rotate(60deg);
}

.diamond-4 {
    top: 60%;
    right: 8%;
    transform: rotate(-30deg);
}

.diamond-5 {
    top: 35%;
    left: 85%;
    transform: rotate(90deg);
}

.diamond-6 {
    top: 75%;
    left: 20%;
    transform: rotate(-75deg);
}

.diamond-7 {
    top: 20%;
    left: 50%;
    transform: rotate(15deg);
}

.diamond-8 {
    top: 80%;
    right: 25%;
    transform: rotate(-60deg);
}

.diamond-9 {
    top: 10%;
    left: 75%;
    transform: rotate(120deg);
}

.diamond-10 {
    top: 55%;
    left: 40%;
    transform: rotate(-15deg);
}

.diamond-11 {
    top: 30%;
    right: 35%;
    transform: rotate(75deg);
}

.diamond-12 {
    top: 85%;
    left: 60%;
    transform: rotate(-90deg);
}

.diamond-13 {
    top: 40%;
    left: 25%;
    transform: rotate(45deg);
}

.diamond-14 {
    top: 70%;
    right: 45%;
    transform: rotate(-105deg);
}

.diamond-15 {
    top: 12%;
    right: 5%;
    transform: rotate(135deg);
}

.diamond-16 {
    top: 50%;
    left: 70%;
    transform: rotate(-20deg);
}

.diamond-17 {
    top: 90%;
    left: 40%;
    transform: rotate(80deg);
}

.diamond-18 {
    top: 25%;
    left: 30%;
    transform: rotate(-110deg);
}

.diamond-19 {
    top: 65%;
    right: 60%;
    transform: rotate(50deg);
}

.diamond-20 {
    top: 5%;
    left: 35%;
    transform: rotate(-85deg);
}



.diamantes .container {
    position: relative;
    z-index: 2;
}

.diamantes h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.diamantes .container p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.diamantes-grid {
    display: flex;
    gap: 10px;
    margin-top: 3rem;
    justify-content: center;
    align-items: stretch;
}

.diamante-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    padding: 0;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 0, 0, 0.957);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    height: 280px;
    width: 200px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    will-change: transform, box-shadow;
}

.diamante-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 0, 0, 0.95) 0%, 
        rgba(255, 0, 0, 0.95) 25%,
        rgba(255, 0, 0, 0.95) 50%,
        rgba(255, 0, 0, 0.95) 75%,
        rgba(255, 0, 0, 0.95) 100%);
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px) saturate(1.5);
    box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.1);
}

.diamante-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 170, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.8s ease;
    z-index: 1;
}



.diamante-card:hover {
    flex: 2;
    background-color: #b8b8b8;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.3), 
                0 0 40px rgba(255, 0, 0, 0.2);
}

.diamante-card:hover::before {
    width: 100%;
}

.diamante-card:hover::after {
    opacity: 1;
    transform: translate(-25%, -25%) scale(1.1);
}





.diamante-card:hover .add-to-cart-btn-diamond {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.6),
                inset 0 1px 12px rgba(255, 255, 255, 0.3);
}

.add-to-cart-btn-diamond {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    background: linear-gradient(45deg, #ff0000 0%, #ff0000 25%, #cc0000 50%, #bb0000 75%, #990000 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    text-transform: uppercase;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 4;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4),
                inset 0 1px 8px rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.add-to-cart-btn-diamond::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 25%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0.4) 75%, 
        transparent 100%);
    transition: left 0.8s ease;
    border-radius: 35px;
}

.add-to-cart-btn-diamond::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: -1;
}

.add-to-cart-btn-diamond:hover {
    background: linear-gradient(45deg, #cc0000, #ff0000, #ff0000, #ff0000);
    transform: translate(-50%, -50%) scale(0.85);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.6),
                inset 0 2px 12px rgba(255, 255, 255, 0.3);
    animation: none;
}

.add-to-cart-btn-diamond:hover::before {
    left: 100%;
}

.add-to-cart-btn-diamond:hover::after {
    width: 200px;
    height: 200px;
}

.diamante-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
    position: absolute;
    top: 0;
    left: 0;
}

.diamante-card img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 2;
    border-radius: 18px;
    animation: diamond-shine 3s ease-in-out infinite;
}

.diamante-card:hover img {
    filter: blur(2px) brightness(0.7) contrast(1.1);
    transform: scale(1.05);
}

.diamante-card:hover img::before {
    opacity: 1;
}

@keyframes diamond-shine {
    0%, 100% {
        transform: translateX(-100%) skewX(-15deg);
        opacity: 0;
    }
    50% {
        transform: translateX(100%) skewX(-15deg);
        opacity: 0.6;
    }
}

.diamante-card .card-content {
    display: none;
}

.diamante-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ff0000;
}

.diamante-card .price {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

/* Popular Diamante Styles */
.diamante-card.popular {
    border: 2px solid #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.popular-badge {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.5);
    z-index: 10;
}

.popular-btn {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 0, 0, 0.6), 
                    0 0 30px rgba(255, 0, 0, 0.3);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
        transform: scale(1);
    }
}

@keyframes button-pulse {
    0%, 100% {
        box-shadow: 0 12px 35px rgba(255, 0, 0, 0.5),
                    inset 0 2px 10px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 16px 45px rgba(255, 0, 0, 0.7),
                    inset 0 3px 15px rgba(255, 255, 255, 0.3);
    }
}

@keyframes diamond-sparkle {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1) rotate(0deg);
    }
    25% {
        opacity: 0.8;
        transform: scale(1.1) rotate(90deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
    75% {
        opacity: 0.8;
        transform: scale(1.1) rotate(270deg);
    }
}

@keyframes floating-particles {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #04121d;
    position: relative;
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(227, 6, 19, 0.3) 0%, transparent 50%),
                radial-gradient(circle at top right, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
                url('imagemcontato.png');
    background-size: auto, auto, 40%;
    background-position: bottom left, top right, left bottom;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('estrelascontato.png');
    background-size: 40%;
    background-position: right top;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
    z-index: 1;
    pointer-events: none;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.contact > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    background: rgba(4, 18, 29, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(227, 6, 19, 0.2);
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e30613;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888888;
}

.submit-btn {
    background: linear-gradient(45deg, #e30613, #ff002b);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-transform: uppercase;
}

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



/* Como Jogar Section */
.como-jogar {
    background-color: #151515;
    background-image: url('backgroundjogar.jpg');
    background-position: center 10%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #f2f2f2;
    padding: 50px 0;
    position: relative;
}

.como-jogar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(21, 21, 21, 0.8);
    z-index: 1;
}



.como-jogar .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.como-jogar h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 1rem;
}

.como-jogar h1 span {
    color: #e30613;
    font-family: 'Brush Script MT', cursive;
}

.como-jogar p.subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
}

.step {
    background: #151515;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-left: 4px solid #e30613;
}

.step-number {
    font-size: 26px;
    font-weight: bold;
    background-color: transparent;
    border: 2px solid #e30613;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 38px;
    color: #e30613;
    flex-shrink: 0;
}

.step-text {
    font-size: 17px;
    line-height: 1.5;
}

.step-text a {
    color: #ff002b;
    text-decoration: none;
}

.step-text a:hover {
    text-decoration: underline;
}

.final-step {
    margin-top: 40px;
    background: #151515;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    border: 2px dashed #e30613;
}

.final-step strong {
    color: #ffffff;
    font-size: 20px;
}

.highlight {
    color: #e30613;
    font-weight: bold;
}

/* Footer */
.footer {
    padding: 25px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-logo img {
    height: 90px;
}

.footer-center {
    text-align: center;
}

.footer-center p {
    color: #888888;
    margin: 0;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    margin-right: 50px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
    color: #e30613;
}

.aureon-link {
    color: #dc143c;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    position: relative;
    letter-spacing: 0.5px;
    background: linear-gradient(45deg, #dc143c, #ff0000, #b22222, #8b0000, #dc143c);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.aureon-link:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
    animation-duration: 2s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 0.1rem 0;
    }
    
    .nav-logo img {
        height: 60px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-login {
        margin-left: 1rem;
    }
    
    .login-btn {
        padding: 0.5em 1.5em;
        font-size: 14px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    

    
    .diamantes-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .diamante-card {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .diamante-card:hover {
        flex: none;
        transform: scale(1.02);
        background-color: #b8b8b8;
    }
    

    
    .diamante-card.popular {
        transform: none;
    }
    
    .diamond-icon {
        width: 60px;
        height: 60px;
        opacity: 0.4;
    }
    
    .diamond-3, .diamond-6, .diamond-9, .diamond-11, .diamond-13, .diamond-15, .diamond-17, .diamond-19 {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-logo img {
        height: 75px;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111111;
}

::-webkit-scrollbar-thumb {
    background: #e30613;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff002b;
}

/* Discord Authentication Styles */


.user-profile {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(227, 6, 19, 0.3);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #e30613;
}

.username {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.logout-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #e30613;
}

.user-welcome {
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.1), rgba(227, 6, 19, 0.05));
    border: 1px solid rgba(227, 6, 19, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.user-welcome h3 {
    color: #e30613;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.user-welcome p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    min-width: 300px;
    max-width: 500px;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: slideInRight 0.3s ease-out;
}

.notification-success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-left: 4px solid #2E7D32;
}

.notification-error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    border-left: 4px solid #C62828;
}

.notification-info {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    border-left: 4px solid #c01515;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    color: white;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    margin-left: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.notification-close:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive adjustments for auth */
@media (max-width: 768px) {
    .user-profile {
        gap: 0.5rem;
        padding: 0.4rem;
    }
    
    .username {
        font-size: 0.8rem;
    }
    
    .discord-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
    }
    
    .user-welcome {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .user-welcome h3 {
        font-size: 1.3rem;
    }
}

/* Text Generate Effect Styles */
.text-generate-effect {
    opacity: 1;
}

.text-generate-effect .word {
    display: inline;
    opacity: 0;
    filter: blur(8px);
    transform: translateY(10px);
    transition: all 0.6s ease-out;
}

.text-generate-effect .word.animate {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0px);
}

/* Music Player Styles */
.music-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.music-player:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 
                0 0 0 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transform: translateY(-2px);
}

.music-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.music-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 14px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    user-select: none;
    overflow: hidden;
    color: white;
    z-index: 1;
    font-family: inherit;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 44px;
    height: 44px;
}

.music-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 25%, 
        rgba(255, 255, 255, 0.5) 50%, 
        rgba(255, 255, 255, 0.3) 75%, 
        transparent 100%);
    transition: left 0.6s ease;
    z-index: -1;
}

.music-btn:hover::before {
    left: 100%;
}

.music-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.music-btn:hover {
    background: rgba(227, 6, 19, 0.8);
    border-color: rgba(227, 6, 19, 0.6);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.3);
    transform: translateY(-2px);
}

.music-btn:hover::before {
    left: 100%;
}

.music-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(227, 6, 19, 0.2);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-slider {
    width: 80px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.volume-slider:hover {
    background: rgba(227, 6, 19, 0.3);
    border-color: rgba(227, 6, 19, 0.5);
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    background: #e30613;
    box-shadow: 0 4px 16px rgba(227, 6, 19, 0.5);
    border: 2px solid rgba(227, 6, 19, 0.8);
    transform: scale(1.2);
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #e30613;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(227, 6, 19, 0.3);
    transition: all 0.3s ease;
}

.volume-slider::-moz-range-thumb:hover {
    background: #ff002b;
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.5);
    transform: scale(1.2);
}



/* Responsive adjustments for music player */
@media (max-width: 768px) {
    .music-player {
        bottom: 15px;
        right: 15px;
        padding: 12px;
    }
    
    .music-btn {
        width: 32px;
        height: 32px;
        padding: 6px;
    }
    
    .volume-slider {
        width: 60px;
    }
}