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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    line-height: 1.6;
}

header {
    background: #000;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(255,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

nav a:hover {
    color: #ff0000;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .container {
        grid-template-columns: 1fr 300px;
    }
}

h1 {
    font-size: 2.5rem;
    color: #ff0000;
    margin: 2rem 0;
    text-align: center;
}

h2 {
    font-size: 2rem;
    color: #ff0000;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #ff0000;
    padding-bottom: 0.5rem;
}

h3 {
    font-size: 1.5rem;
    color: #fff;
    margin: 1.5rem 0 1rem 0;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .profiles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .profiles-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.profile-card {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255,0,0,0.4);
}

.profile-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.profile-info {
    padding: 1rem;
}

.profile-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 0.5rem;
}

.profile-details {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.profile-status {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.cta-banner {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(255,0,0,0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.cta-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-btn {
    background: #fff;
    color: #ff0000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.cta-btn:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

.sidebar-links {
    background: #2a2a2a;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff0000;
}

.sidebar-links h4 {
    color: #ff0000;
    margin-bottom: 1rem;
}

.sidebar-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.sidebar-links a:hover {
    color: #ff0000;
}

.comparison-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .comparison-section {
        grid-template-columns: 1fr;
    }
}

.comparison-box {
    padding: 1.5rem;
    border-radius: 10px;
}

.likes {
    background: linear-gradient(135deg, #1a4d1a 0%, #0d260d 100%);
    border-left: 5px solid #00ff00;
}

.dislikes {
    background: linear-gradient(135deg, #4d1a1a 0%, #260d0d 100%);
    border-left: 5px solid #ff0000;
}

.comparison-box h3 {
    margin-top: 0;
}

.comparison-box ul {
    list-style: none;
    padding-left: 0;
}

.comparison-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.likes li:before {
    content: "✓";
    color: #00ff00;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.dislikes li:before {
    content: "✗";
    color: #ff0000;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.steps-section {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.step {
    margin: 1.5rem 0;
    padding-left: 3rem;
    position: relative;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    background: #ff0000;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.faq-section {
    margin: 2rem 0;
}

.faq-item {
    background: #2a2a2a;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 10px;
    border-left: 4px solid #ff0000;
}

.faq-question {
    font-weight: bold;
    color: #ff0000;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

footer {
    background: #000;
    padding: 2rem;
    margin-top: 3rem;
    border-top: 2px solid #ff0000;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff0000;
}

.footer-text {
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    nav { gap: 1rem; }
    .header-container { justify-content: center; }
    .logo { margin-bottom: 1rem; width: 100%; text-align: center; }
    .footer-links { gap: 1rem; }
}
