/* aifurrysatanicporn.pw - Main Stylesheet */
:root {
    --dark-bg: #1a0000;
    --dark-red: #660000;
    --bright-red: #990000;
    --accent: #FF3300;
    --highlight: #FFCC00;
    --text: #f8f8f8;
    --text-secondary: #ccc;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: 'Arial', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--dark-bg);
    position: relative;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--text);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--highlight);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text);
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.8rem;
    text-transform: uppercase;
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 2rem;
}

.text-highlight {
    color: var(--highlight);
}

.demonic-text {
    color: var(--accent);
    font-style: italic;
    position: relative;
}

.demonic-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.demonic-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

section {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent);
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
    color: var(--text-secondary);
}

/* Background Effects */
.background-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(153, 0, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(153, 0, 0, 0.1) 0%, transparent 40%);
    z-index: -2;
    pointer-events: none;
}

.background-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 10L35 25L50 25L37.5 35L42.5 50L30 40L17.5 50L22.5 35L10 25L25 25Z' stroke='%23330000' fill='none'/%3E%3C/svg%3E");
    opacity: 0.05;
    z-index: -1;
}

.fire-border {
    position: fixed;
    z-index: -1;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    filter: blur(5px);
    opacity: 0.3;
    pointer-events: none;
}

.fire-border.top, .fire-border.bottom {
    height: 2px;
    width: 100%;
    left: 0;
}

.fire-border.left, .fire-border.right {
    width: 2px;
    height: 100%;
    top: 0;
}

.fire-border.top {
    top: 0;
}

.fire-border.bottom {
    bottom: 0;
}

.fire-border.left {
    left: 0;
}

.fire-border.right {
    right: 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(26, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(153, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    margin-right: 1.5rem;
}

.site-title h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-size: 1.6rem;
    font-weight: 500;
    padding: 0.5rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--accent);
    color: var(--text);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: var(--highlight);
    color: var(--dark-bg);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.8rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
}

.primary-btn, .secondary-btn, .cta-button {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.primary-btn, .cta-button {
    background: var(--accent);
    color: var(--text);
}

.primary-btn:hover, .cta-button:hover {
    background: var(--highlight);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.secondary-btn {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.secondary-btn:hover {
    background: var(--accent);
    color: var(--text);
}

.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px;
    background: var(--accent);
    z-index: -1;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-effect:hover::before {
    opacity: 0.7;
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ritual-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
}

.inner-circle, .middle-circle, .outer-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.inner-circle {
    width: 100px;
    height: 100px;
    animation: pulse 4s infinite alternate;
}

.middle-circle {
    width: 200px;
    height: 200px;
    animation: pulse 6s infinite alternate-reverse;
}

.outer-circle {
    width: 300px;
    height: 300px;
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.05); }
}

.symbol {
    position: absolute;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 5px var(--accent));
}

.symbol-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 5L17 12L24 12L18 16L20 23L15 19L10 23L12 16L6 12L13 12Z' stroke='%23FF3300' fill='none'/%3E%3C/svg%3E");
}

.symbol-2 {
    bottom: 30%;
    right: 10%;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='15' cy='15' r='10' stroke='%23FF3300' fill='none'/%3E%3Cpath d='M10 15L20 15M15 10L15 20' stroke='%23FF3300'/%3E%3C/svg%3E");
}

.symbol-3 {
    bottom: 30%;
    left: 10%;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='15' cy='15' r='10' stroke='%23FF3300' fill='none'/%3E%3Cpath d='M10 10L20 20M10 20L20 10' stroke='%23FF3300'/%3E%3C/svg%3E");
}

.pentagram-container {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 0;
    left: -50px;
    opacity: 0.3;
    z-index: -1;
}

.pentagram {
    position: relative;
    width: 100%;
    height: 100%;
}

.pentagram-path {
    fill: none;
    stroke: var(--accent);
    stroke-width: 2;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Features Section */
.features {
    background: linear-gradient(to bottom, var(--dark-bg), rgba(26, 0, 0, 0.95));
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: rgba(40, 0, 0, 0.6);
    border: 1px solid var(--dark-red);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 2rem;
}

.feature-card h3 {
    margin-bottom: 1.5rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Showcase Section */
.showcase {
    background: linear-gradient(to bottom, rgba(26, 0, 0, 0.95), var(--dark-bg));
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.showcase-item {
    border-radius: 8px;
    overflow: hidden;
    background: rgba(40, 0, 0, 0.6);
    border: 1px solid var(--dark-red);
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
}

.showcase-content {
    padding: 2rem;
}

.showcase-svg {
    border-radius: 8px;
    margin-bottom: 2rem;
}

.showcase-item h3 {
    margin-bottom: 1rem;
}

.showcase-item p {
    color: var(--text-secondary);
}

/* Rituals Section */
.rituals {
    background: linear-gradient(to bottom, var(--dark-bg), rgba(26, 0, 0, 0.95));
    position: relative;
}

.ritual-steps {
    counter-reset: step;
    max-width: 800px;
    margin: 0 auto;
}

.ritual-step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 2rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
    padding-bottom: 3rem;
    position: relative;
}

.ritual-step:not(:last-child) .step-content::before {
    content: '';
    position: absolute;
    top: 50px;
    left: -36px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--dark-red);
}

/* CTA Section */
.cta {
    background: linear-gradient(to right, var(--dark-red), var(--dark-bg));
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.pentagram-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 10L35 25L50 25L37.5 35L42.5 50L30 40L17.5 50L22.5 35L10 25L25 25Z' stroke='%23660000' fill='none'/%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3.6rem;
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.cta-button {
    font-size: 1.8rem;
    padding: 1.5rem 3rem;
}

/* Footer */
footer {
    background: rgba(20, 0, 0, 0.95);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--dark-red);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-title {
    margin-left: 1.5rem;
}

.footer-title h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-title p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-column h4 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column a {
    font-size: 1.4rem;
    color: var(--text-secondary);
}

.footer-column a:hover {
    color: var(--highlight);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(102, 0, 0, 0.3);
}

.copyright, .disclaimer {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    html {
        font-size: 58%;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: calc(var(--header-height) + 3rem);
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 5rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        position: relative;
        width: 100%;
        right: auto;
        top: auto;
        transform: none;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-links {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(26, 0, 0, 0.98);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 4rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 2rem;
    }
    
    .features-grid, .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 55%;
    }
    
    .hero-title {
        font-size: 3.6rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        text-align: center;
    }
    
    .site-title h1 {
        font-size: 1.6rem;
    }
}
