/* Estilos generales */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #EFF7FD; /* Fondo  */
    background-image: url("../img/Background.png");
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}




/* Estilos específicos para cada página */
body.login-page {
    background: url("../img/Background.png") no-repeat center center fixed;
    background-size: cover;
    justify-content: center;
    align-items: center;
}

/*body.amazon-page {
    background-color: #EFF7FD;  Fondo de Disney+ 
    background-image: url("../img/Background.png");
    
   
    
}
body.disney-page {
    background-color: #EFF7FD; Fondo de Disney+ 
    background-image: url("../img/Background.png")  ;
    
   
    
}

body.netflix-page {
    background-color: #EFF7FD; Fondo de Netflix 
    background-image: url("../img/Background.png") ;
   
    
}*/

/* Header & Navbar */
.header, .navbar {
    background-color: #C1D6EF;
    background: linear-gradient(180deg, rgba(202, 232, 255, 0.20) 0%, rgba(54, 122, 204, 0.20) 100%);
    backdrop-filter: blur(15px);
    padding: 15px 24px;
    width: 100%;
    box-shadow: 0 2px 4px #78A6DD;
    display: flex;
    gap: 32px;
    align-items: center;
}

.navbar img {
    height: 80px;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
}

.nav-button {
    background-color: #333;
    color: #fff;
    font-family: 'Roboto', sans-serif; 
    font-size: 16px;
    padding: 10px 20px;
    border: 1px solid #EFF7FD;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(.4,2,.3,1);
    outline: none;
    width: auto;
    min-width: 80px;
    text-align: center;
    display: inline-block;
    white-space: nowrap;
}

.nav-button:hover {
    background-color: #EFF7FD;
    color: #367ACC;
    transform: translateY(-2px);
}

/* Resaltar el botón de la página actual */
.nav-button.active {
    font-weight: 900;
    transform: scale(1.12) translateY(-8px);
    z-index: 10;
    outline: none;
    transition: transform 0.25s cubic-bezier(.4,2,.3,1);
}

/* Platform-specific button colors */
.button-amazon {
    background-color: #0a9cfd;
}

.button-disney {
    background-color: #0063e5;
}

.button-netflix {
    background-color: #e50914;
}

.button-spotify {
    background: linear-gradient(135deg, #1DB954, #1ed760);
    color: white;
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.2);
    border: 2px solid rgba(255,255,255,0.1);
}

.button-spotify:hover {
    background: linear-gradient(135deg, #1ed760, #1DB954);
    color: white;
    box-shadow: 0 8px 25px rgba(29, 185, 84, 0.3);
}

.fa-solid, .fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 100px;
}
.logout-button {
  
    width: 60px;
    height: 60px;
    color: #367ACC;
    border: none;
    background: none;
    cursor: pointer;
    transition: color 0.3s;
    margin-left: auto; 
    align-content: center;
}

.logout-button:hover {
    color: #EFF7FD;
}

/* Contenedor de Login */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    width: 90%;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    margin: 20px auto;
}

/* Formulario de Login */
.login-form {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 500px;
}

.login-form h1 {
    font-size: 24px;
    margin-bottom: 20px;
    font-family:'Roboto', sans-serif; 
}

.login-form input {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #C1D6EF;
    border-radius: 5px;
    font-size: 16px;
    font-family:'Roboto', sans-serif; 
    width: 100%;
    box-sizing: border-box;
}

.login-form button {
    padding: 12px;
    background-color: #367ACC;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family:'Roboto', sans-serif; 
    transition: background-color 0.3s;
    width: 100%;
}

.login-form button:hover {
    background-color: #C1D6EF ;
    color: #367ACC;
}

/* Información adicional en login */
.write {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    font-family:'Roboto', sans-serif; 
}

.write a {
    color: #367ACC;
    text-decoration: none;
    font-family:'Roboto', sans-serif;
    font-size: 16px; 
    text-align: center;
}

.write a:hover {
    text-decoration: underline;
    font-family:'Roboto', sans-serif; 
}

/* Imagen de la derecha en login */
.login-image {
    flex: 1;
    background: url("../img/Image.png") no-repeat center center;
     /* La imagen no superará la altura del contenedor */
    object-fit: cover; 
    width: auto;
    max-width: 1000px;
    height: 1000px;
    display: block;
    border-radius: 10px;
    box-sizing: border-box;
}

/* Main Content */
.main-content {
    flex: 1;
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 100px;
    margin-bottom: 100px;
}

/* Hero Section */
.hero h1 {
    font-size: 40px;
    font-family:'Roboto', sans-serif; 
    margin-bottom: 20px;
    color: #367ACC;
    justify-content: center;
}

/* Email Form */
.email-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 400px;
}

.email-form input {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 150%;
    box-sizing: border-box;
    font-family:'Roboto', sans-serif; 
}

.email-form button {
    padding: 12px;
    background-color: #367ACC;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family:'Roboto', sans-serif; 
    width: 150%;
}

.email-form button:hover {
    background-color: #C1D6EF ;
}

/* Notification */
.notification {
    background-color: rgba(255, 0, 0, 0.8);
    padding: 10px;
    border-radius: 8px;
    max-width: 400px;
    margin: 20px auto;
    color: #f8f7f7;
    text-align: center;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.notification-text {
    font-weight: bold;
}

/* Back button styles */
.back-button {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2a09e5;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, transform 0.3s;
}

.back-button:hover {
    background-color: #1e07b9;
    transform: translateX(-50%) scale(1.1);
}

.back-button i {
    font-size: 28px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 15px;
    }

    .nav-buttons {
        display: flex;
        flex-direction: row;
        gap: 10px;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-button {
        font-size: 14px;
        padding: 8px 16px;
        min-width: 70px;
        min-height: 44px;
    }

    .header .logo-img, .navbar img {
        height: 60px;
    }

    .logout-button {
        width: 44px;
        height: 44px;
        margin-top: 10px;
        margin-left: 0;
    }

    .main-content {
        padding: 15px 10px;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .email-form input, 
    .email-form button {
        font-size: 15px;
        padding: 12px;
    }

    .notification {
        max-width: 280px;
        font-size: 13px;
        padding: 8px;
    }

    .login-container {
        flex-direction: column;
        padding: 20px;
    }

    .logout-button {
        margin-top: 10px;
        display: flex;
        align-items: center;
        width: 32px;
        height: 32px;
        color: #367ACC;
        border: none;
        background: none;
        cursor: pointer;
        justify-content: center;
        transition: color 0.3s;
        margin-left: 0;
    }

    .login-image {
        display: none;
        width: 100%;
        margin: 8px 0;
    }

    .back-button {
        width: 50px;
        height: 50px;
        bottom: -30px;
    }

    .back-button i {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px;
        gap: 10px;
    }

    .nav-buttons {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-button {
        font-size: 12px;
        padding: 8px 12px;
        min-width: 60px;
        min-height: 40px;
    }

    .header .logo-img, .navbar img {
        height: 50px;
    }

    .hero h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .email-form input, 
    .email-form button {
        font-size: 13px;
        padding: 10px;
    }

    .notification {
        max-width: 220px;
        font-size: 11px;
        padding: 6px;
    }

    .nav-buttons {
        gap: 8px;
        margin-bottom: 8px;
    }
}
/* Agregar estos estilos al final de tu archivo CSS existente */

/* =========================
   ESTILOS PARA EMAIL VIEW
   ========================= */

/* Contenedor principal del email */
.email-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100vh - 140px);
}

/* Tarjeta del email con efectos modernos */
.email-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(54, 122, 204, 0.1),
        0 8px 16px rgba(54, 122, 204, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(193, 214, 239, 0.3);
    overflow: hidden;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.email-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1DB954, #1ed760, #1DB954);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.email-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(54, 122, 204, 0.15),
        0 12px 24px rgba(54, 122, 204, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Header del email */
.email-header {
    background: linear-gradient(135deg, #1DB954, #1ed760);
    padding: 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.email-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
}

.email-header h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.spotify-icon {
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.spotify-icon i {
    font-size: 24px;
    color: white;
}

/* Metadata del email */
.email-meta {
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(193, 214, 239, 0.1), rgba(239, 247, 253, 0.3));
    border-bottom: 1px solid rgba(193, 214, 239, 0.2);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
    background: rgba(255,255,255,0.7);
    border-radius: 10px;
    border: 1px solid rgba(193, 214, 239, 0.2);
    transition: all 0.2s ease;
}

.meta-item:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(54, 122, 204, 0.1);
}

.meta-label {
    font-weight: 600;
    color: #367ACC;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    color: #333;
    font-weight: 500;
    word-break: break-all;
    font-size: 14px;
}

/* Contenido del email */
.email-content {
    padding: 30px;
}

.content-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #367ACC;
    margin-bottom: 20px;
    font-size: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(54, 122, 204, 0.1);
}

.content-label i {
    color: #1DB954;
    font-size: 18px;
}

.body-content {
    background: rgba(247, 250, 255, 0.8);
    border: 1px solid rgba(193, 214, 239, 0.3);
    border-radius: 12px;
    padding: 25px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #444;
    position: relative;
    backdrop-filter: blur(5px);
}

.html-content {
    /* Estilos específicos para contenido HTML */
    overflow-wrap: break-word;
}

/* Código de verificación resaltado */
.verification-code {
    background: linear-gradient(135deg, #1DB954, #1ed760);
    color: white;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 
        0 8px 25px rgba(29, 185, 84, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: 4px;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
    cursor: pointer;
}

.verification-code::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.verification-code:hover {
    transform: scale(1.02);
    box-shadow: 
        0 12px 35px rgba(29, 185, 84, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.verification-code:hover::before {
    animation: codeShine 0.6s ease-in-out;
}

@keyframes codeShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Consolidated Action Button Styles */
.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-height: 44px;
}

.copy-btn {
    background: linear-gradient(135deg, #1DB954, #1ed760);
    color: white;
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
    border: 2px solid rgba(255,255,255,0.2);
}

.copy-btn:hover {
    background: linear-gradient(135deg, #1ed760, #1DB954);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 185, 84, 0.4);
}

.action-btn:not(.copy-btn) {
    background: linear-gradient(135deg, #367ACC, #4A90E2);
    color: white;
    box-shadow: 0 4px 15px rgba(54, 122, 204, 0.3);
    border: 2px solid rgba(255,255,255,0.2);
}

.action-btn:not(.copy-btn):hover {
    background: linear-gradient(135deg, #4A90E2, #367ACC);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(54, 122, 204, 0.4);
}

/* Responsive Design para Email View */
@media (max-width: 768px) {
    .email-container {
        margin: 10px auto;
        padding: 10px;
        min-height: calc(100vh - 120px);
    }
    
    .email-card {
        border-radius: 15px;
        margin: 0;
        box-shadow: 
            0 10px 25px rgba(54, 122, 204, 0.15),
            0 4px 12px rgba(54, 122, 204, 0.1);
    }
    
    .email-header {
        padding: 20px 15px;
    }
    
    .email-header h2 {
        font-size: 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .spotify-icon {
        width: 40px;
        height: 40px;
    }
    
    .spotify-icon i {
        font-size: 18px;
    }
    
    .email-meta {
        padding: 15px;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .meta-item {
        padding: 10px;
        font-size: 13px;
    }
    
    .meta-label {
        font-size: 11px;
    }
    
    .meta-value {
        font-size: 13px;
        word-break: break-word;
    }
    
    .email-content {
        padding: 15px;
    }
    
    .content-label {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .body-content {
        padding: 15px;
        font-size: 14px;
        line-height: 1.5;
    }
    
    .verification-code {
        font-size: 22px;
        padding: 15px 10px;
        letter-spacing: 2px;
        margin: 15px 0;
    }
    
    .actions {
        padding: 15px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .action-btn {
        width: 100%;
        max-width: 280px;
        min-height: 48px;
        font-size: 15px;
        padding: 12px 20px;
    }

    /* Estilos específicos para email-body (páginas legacy) */
    .email-content .email-body {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 15px;
        padding: 20px 15px;
        margin: 20px 0;
        box-shadow: 0 8px 20px rgba(54, 122, 204, 0.1);
        border: 1px solid rgba(193, 214, 239, 0.2);
    }
    
    .email-body p {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 1.5;
        word-break: break-word;
    }
    
    .email-body strong {
        color: #367ACC;
        font-weight: 600;
    }
    
    .email-body .body-content {
        margin-top: 15px;
        padding: 15px;
        background: rgba(247, 250, 255, 0.8);
        border-radius: 10px;
        border: 1px solid rgba(193, 214, 239, 0.2);
        font-size: 13px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .email-container {
        margin: 5px auto;
        padding: 5px;
    }
    
    .email-card {
        border-radius: 12px;
    }
    
    .email-header {
        padding: 15px 10px;
    }
    
    .email-header h2 {
        font-size: 18px;
    }
    
    .spotify-icon {
        width: 35px;
        height: 35px;
    }
    
    .spotify-icon i {
        font-size: 16px;
    }
    
    .email-meta {
        padding: 10px;
        gap: 8px;
    }
    
    .meta-item {
        padding: 8px;
    }
    
    .meta-label {
        font-size: 10px;
    }
    
    .meta-value {
        font-size: 12px;
    }
    
    .email-content {
        padding: 10px;
    }
    
    .content-label {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .body-content {
        padding: 12px;
        font-size: 13px;
    }
    
    .verification-code {
        font-size: 20px;
        padding: 12px 8px;
        letter-spacing: 1px;
        margin: 12px 0;
    }
    
    .actions {
        padding: 10px;
        gap: 10px;
    }
    
    .action-btn {
        max-width: 260px;
        padding: 14px 18px;
        font-size: 14px;
        min-height: 50px;
    }

    /* Estilos móviles para email-body */
    .email-content .email-body {
        padding: 15px 10px;
        margin: 15px 0;
        border-radius: 12px;
    }
    
    .email-body p {
        margin-bottom: 12px;
        font-size: 13px;
    }
    
    .email-body .body-content {
        margin-top: 12px;
        padding: 12px;
        font-size: 12px;
        border-radius: 8px;
    }
}

/* Estilos adicionales para mejorar la legibilidad en móviles */
@media (max-width: 768px) {
    .navbar {
        position: sticky;
        top: 0;
        z-index: 100;
    }
    
    .main-content {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    /* Mejoras para texto largo en móviles */
    .body-content * {
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .body-content table {
        width: 100% !important;
        font-size: 12px !important;
    }
    
    .body-content img {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* ========================================
   ESTILOS PARA CHATGPT
   Agregar al final de tu archivo styles.css
======================================== */

/* Página de ChatGPT */


/* Botón de navegación ChatGPT */
.button-chatgpt {
    background: linear-gradient(135deg, #10a37f, #1a7f64) !important;
    color: white !important;
    border: 2px solid #10a37f !important;
    transition: all 0.3s ease !important;
}

.button-chatgpt:hover {
    background: linear-gradient(135deg, #0d8c6a, #157a5d) !important;
    box-shadow: 0 8px 25px rgba(16, 163, 127, 0.4) !important;
    transform: translateY(-2px) !important;
}

/* Icono de ChatGPT en email view */
.chatgpt-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10a37f, #1a7f64);
    border-radius: 12px;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(16, 163, 127, 0.3);
}

.chatgpt-icon i {
    color: white;
    font-size: 20px;
}

/* Tema ChatGPT para toda la página */
.chatgpt-page .hero h1 {
    background: linear-gradient(135deg, #10a37f, #1a7f64);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.chatgpt-page .email-form button {
    background: linear-gradient(135deg, #10a37f, #1a7f64) !important;
    border: none !important;
}

.chatgpt-page .email-form button:hover {
    background: linear-gradient(135deg, #0d8c6a, #157a5d) !important;
    box-shadow: 0 10px 30px rgba(16, 163, 127, 0.4) !important;
}

/* Estilos específicos para el código de verificación de ChatGPT */
.chatgpt-page .verification-code {
    background: linear-gradient(135deg, #10a37f, #1a7f64);
    color: white;
    padding: 25px;
    border-radius: 16px;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 20px 0;
    letter-spacing: 8px;
    box-shadow: 0 15px 35px rgba(16, 163, 127, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.chatgpt-page .verification-code::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: chatgpt-shine 3s linear infinite;
}

/* Efecto shine para el código de ChatGPT */
@keyframes chatgpt-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Botón copiar específico para ChatGPT */
.chatgpt-page .copy-btn {
    background: linear-gradient(135deg, #10a37f, #1a7f64) !important;
    border: 2px solid rgba(16, 163, 127, 0.3) !important;
}

.chatgpt-page .copy-btn:hover {
    background: linear-gradient(135deg, #0d8c6a, #157a5d) !important;
    box-shadow: 0 10px 30px rgba(16, 163, 127, 0.4) !important;
}

/* Responsivo para móviles - ChatGPT */
@media (max-width: 768px) {
    .chatgpt-page .verification-code {
        font-size: 2rem;
        letter-spacing: 6px;
        padding: 20px;
    }
    
    .chatgpt-icon {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }
    
    .chatgpt-icon i {
        font-size: 16px;
    }
    
    .button-chatgpt {
        padding: 8px 12px !important;
        font-size: 0.9rem !important;
    }
}