{\rtf1\ansi\ansicpg1252\cocoartf2820 \cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \margl1440\margr1440\vieww11520\viewh8400\viewkind0 \pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0 \f0\fs24 \cf0 User's blog

Sample Page

MEDIA NEON

Fe que brilla en la oscuridad

Crisis de Autenticidad

Video de la Predicacion del Domingo

Crisis de Autenticidad

Video de la Predicacion del Domingo

:root {
    --neon-blue: #0ff0fc;
    --neon-purple: #bc13fe;
    --neon-pink: #ff2ced;
    --dark-bg: #0a0a12;
    --darker-bg: #050508;
    --card-bg: rgba(15, 15, 25, 0.8);
    --text-glow: 0 0 10px rgba(187, 255, 255, 0.8);
    --modal-bg: rgba(5, 5, 15, 0.95);
}

.neon-video-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--dark-bg);
    color: white;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(11, 227, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(188, 19, 254, 0.05) 0%, transparent 50%);
    line-height: 1.6;
}

.neon-video-grid-container header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.neon-video-grid-container header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 227, 255, 0.1), rgba(188, 19, 254, 0.1));
    border-radius: 15px;
    z-index: -1;
    border: 1px solid rgba(11, 227, 255, 0.2);
}

.neon-video-grid-container h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 6vw, 4rem);
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    text-shadow: var(--text-glow);
    letter-spacing: 2px;
}

.neon-video-grid-container .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 1px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.video-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(11, 227, 255, 0.1);
    cursor: pointer;
}

.video-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
    z-index: -1;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(11, 227, 255, 0.2);
}

.video-card:hover::before {
    opacity: 1;
    animation: neonGlow 1.5s linear infinite;
}

@keyframes neonGlow {
    0% { filter: blur(5px); opacity: 0.7; }
    50% { filter: blur(7px); opacity: 0.9; }
    100% { filter: blur(5px); opacity: 0.7; }
}

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.video-info {
    padding: 20px;
    position: relative;
}

.video-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--neon-blue);
    letter-spacing: 1px;
}

.video-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--modal-bg);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    width: 90%;
    max-width: 900px;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(11, 227, 255, 0.3);
    box-shadow: 0 0 30px rgba(11, 227, 255, 0.3);
    position: relative;
}

.modal-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.modal-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.modal-actions {
    display: flex;
    justify-content: center;
    padding: 20px;
    gap: 15px;
}

.modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: rgba(15, 15, 25, 0.6);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: 1px solid var(--neon-blue);
    cursor: pointer;
}

.modal-btn.youtube {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.8), rgba(200, 0, 0, 0.9));
    border-color: #ff0000;
}

.modal-btn.close {
    background: rgba(15, 15, 25, 0.6);
    border-color: var(--neon-purple);
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 227, 255, 0.3);
}

.modal-btn.youtube:hover {
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.modal-btn i {
    margin-right: 8px;
}

.neon-line {
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
    margin: 50px auto;
    width: 80%;
    border-radius: 3px;
    box-shadow: 0 0 10px var(--neon-blue);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-grid {
        gap: 20px;
    }
    
    .neon-video-grid-container {
        padding: 15px;
    }
    
    .neon-video-grid-container header {
        padding: 30px 15px;
        margin-bottom: 40px;
    }
    
    .neon-line {
        width: 90%;
    }
}

@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-btn {
        width: 100%;
    }
}
[Neon_Video_Grid]

This is an example page. It’s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:

Hi there! I’m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piƱa coladas. (And gettin’ caught in the rain.)

…or something like this:

The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.

As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!