/* Hero Section Styles for Peter Gaming Platform */

/* Hero Section */
.hero-section {
    min-height: 80vh;
    background: var(--dark-gradient);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, var(--lemon-yellow-glow) 0%, transparent 70%);
    pointer-events: none;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content h1 {
    animation: fadeInUp 1s ease-out;
    color: var(--text-white);
}

.hero-content p {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content .btn {
    animation: fadeInUp 1s ease-out 0.6s both;
    transition: all 0.3s ease;
}

.hero-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Hero Text Styling */
.hero-description {
    color: var(--text-white) !important;
    font-size: 1.25rem;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.hero-tagline {
    color: var(--lemon-yellow-dark) !important;
    font-style: italic;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Peter Logo Animation - FIXED CIRCULAR MASK */
.peter-logo {
    max-width: 120px;
    height: 120px;
    width: 120px;
    object-fit: cover;
    border-radius: 50% !important;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 20px var(--lemon-yellow-glow));
    border: 3px solid var(--lemon-yellow-dark);
    cursor: pointer;
    display: block;
    margin: 0 auto;
    overflow: hidden;
}

.peter-logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 30px var(--mint-green-glow));
    border-color: var(--mint-green);
}

/* Contract Address Full */
.contract-address-full {
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid var(--mint-green) !important;
    color: var(--text-white) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Contract and Social Labels */
.contract-label, .social-label {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    filter: drop-shadow(0 0 10px rgba(152, 251, 152, 0.5));
}

/* Social Buttons */
.social-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.social-btn:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Fix para el icono de X (Twitter) */
.social-icon {
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Times New Roman', serif;
}

/* Fix para Instagram - agregar border amarillo */
.social-btn-instagram {
    border: 2px solid var(--lemon-yellow) !important;
    color: var(--lemon-yellow) !important;
}

.social-btn-instagram:hover {
    border-color: var(--lemon-yellow) !important;
    background-color: var(--lemon-yellow) !important;
    color: var(--slate-gray) !important;
}

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

.floating-gas-icons .floating-icon {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.floating-gas-icons .floating-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-gas-icons .floating-icon:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 1.2s;
}

.floating-gas-icons .floating-icon:nth-child(3) {
    top: 60%;
    left: 15%;
    animation-delay: 2.4s;
}

.floating-gas-icons .floating-icon:nth-child(4) {
    top: 20%;
    right: 30%;
    animation-delay: 3.6s;
}

.floating-gas-icons .floating-icon:nth-child(5) {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.8s;
}

/* Contract Section */
.contract-address {
    font-size: 0.9rem;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        text-align: center;
    }

    .contract-address-full {
        max-width: 200px;
        font-size: 0.7rem;
    }

    .contract-label, .social-label {
        font-size: 1rem;
    }

    .social-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .contract-address {
        max-width: 150px;
    }
}