/* assets/css/my-ip-address.css */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
    --accent-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.page-hero {
    background: var(--primary-gradient);
    padding: 100px 0 120px;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.tool-results-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    padding: 40px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ip-display {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Exo 2', sans-serif;
    letter-spacing: -1px;
}

#map {
    height: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
}

.detail-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #64748b;
    font-size: 0.95rem;
}

.detail-value {
    font-weight: 700;
    color: #1e293b;
    font-size: 1rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.info-section-premium {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #667eea;
}

.info-section-premium h3 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.info-section-premium p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.1rem;
}

.btn-share-group .btn {
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
}

.btn-copy {
    background: #f1f5f9;
    color: #475569;
}

.btn-copy:hover {
    background: #e2e8f0;
}

.btn-x {
    background: #000;
    color: #fff;
}

.btn-x:hover {
    transform: scale(1.05);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
}

.btn-precise-location {
    background: linear-gradient(135deg, #0cce6b 0%, #09a054 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(12, 206, 107, 0.3);
}

.btn-precise-location:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(12, 206, 107, 0.4);
    color: white;
}

.btn-precise-location:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-precise-location.btn-success {
    background: #0cce6b !important;
}

.animated-gradient-text {
    background-image: linear-gradient(to right, #ffffff, #e3d9f1, #d0aaf3, #c4a6f5);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gradient-animation 8s infinite alternate;
    display: inline-block;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}