![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/.cursor-server/data/User/History/7c2b80f0/ |
/* GoCodeMe.com Landing Page Styles */
:root {
--primary-color: #6366f1;
--primary-hover: #4f46e5;
--secondary-color: #64748b;
--background-dark: #0f172a;
--background-light: #1e293b;
--surface-dark: #334155;
--text-primary: #f8fafc;
--text-secondary: #cbd5e1;
--border-color: #475569;
--success-color: #10b981;
--error-color: #ef4444;
--warning-color: #f59e0b;
--gradient-start: #6366f1;
--gradient-end: #8b5cf6;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background: var(--background-dark);
color: var(--text-primary);
line-height: 1.6;
overflow-x: hidden;
}
/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translateX(-30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes fadeInRight {
from {
opacity: 0;
transform: translateX(30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes float {
0%, 100% {
transform: translateY(0px);
}
50% {
transform: translateY(-10px);
}
}
@keyframes pulse {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
/* Navigation */
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
background: rgba(15, 23, 42, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border-color);
z-index: 1000;
animation: fadeInUp 0.6s ease-out;
}
.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-logo h2 {
font-size: 1.5rem;
font-weight: 700;
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
background-size: 200% 200%;
animation: gradient 3s ease infinite;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.nav-links {
display: flex;
align-items: center;
gap: 2rem;
}
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
.nav-links a:hover {
color: var(--text-primary);
}
.btn-login, .btn-register {
padding: 0.5rem 1.5rem;
border: none;
border-radius: 0.5rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}
.btn-login {
background: transparent;
color: var(--text-primary);
border: 1px solid var(--border-color);
}
.btn-login:hover {
background: var(--surface-dark);
border-color: var(--primary-color);
}
.btn-register {
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
color: white;
animation: pulse 2s infinite;
}
.btn-register:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}
/* Hero Section */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
padding: 8rem 2rem 4rem;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
z-index: -1;
}
.hero-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
.hero-content {
animation: fadeInLeft 0.8s ease-out;
}
.hero-badge {
display: inline-block;
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
color: white;
padding: 0.5rem 1rem;
border-radius: 2rem;
font-size: 0.875rem;
font-weight: 600;
margin-bottom: 1rem;
animation: pulse 2s infinite;
}
.hero-title {
font-size: 3.5rem;
font-weight: 700;
line-height: 1.1;
margin-bottom: 1.5rem;
}
.gradient-text {
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
background-size: 200% 200%;
animation: gradient 3s ease infinite;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-subtitle {
font-size: 1.25rem;
color: var(--text-secondary);
margin-bottom: 2rem;
line-height: 1.6;
}
.hero-cta {
display: flex;
gap: 1rem;
margin-bottom: 3rem;
}
.btn-primary, .btn-secondary {
padding: 1rem 2rem;
border: none;
border-radius: 0.5rem;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
}
.btn-primary {
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
color: white;
animation: pulse 2s infinite;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}
.btn-secondary {
background: var(--surface-dark);
color: var(--text-primary);
border: 1px solid var(--border-color);
}
.btn-secondary:hover {
background: var(--border-color);
transform: translateY(-2px);
}
.hero-stats {
display: flex;
gap: 2rem;
}
.stat {
text-align: center;
}
.stat-number {
display: block;
font-size: 2rem;
font-weight: 700;
color: var(--primary-color);
}
.stat-label {
font-size: 0.875rem;
color: var(--text-secondary);
}
/* Code Editor Demo */
.hero-visual {
animation: fadeInRight 0.8s ease-out;
}
.code-editor-demo {
background: var(--background-light);
border: 1px solid var(--border-color);
border-radius: 1rem;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
animation: float 6s ease-in-out infinite;
}
.editor-header {
background: var(--surface-dark);
padding: 1rem;
display: flex;
align-items: center;
gap: 1rem;
}
.editor-dots {
display: flex;
gap: 0.5rem;
}
.editor-dots span {
width: 12px;
height: 12px;
border-radius: 50%;
background: var(--text-secondary);
}
.editor-dots span:nth-child(1) { background: #ef4444; }
.editor-dots span:nth-child(2) { background: #f59e0b; }
.editor-dots span:nth-child(3) { background: #10b981; }
.editor-tabs {
display: flex;
gap: 0.5rem;
}
.tab {
padding: 0.5rem 1rem;
background: transparent;
color: var(--text-secondary);
border-radius: 0.25rem;
font-size: 0.875rem;
cursor: pointer;
transition: all 0.3s ease;
}
.tab.active {
background: var(--primary-color);
color: white;
}
.editor-content {
display: flex;
padding: 1rem;
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
font-size: 0.875rem;
line-height: 1.5;
}
.line-numbers {
color: var(--text-secondary);
margin-right: 1rem;
text-align: right;
user-select: none;
}
.line-numbers span {
display: block;
padding: 0.125rem 0;
}
.code-content {
flex: 1;
}
.code-line {
padding: 0.125rem 0;
white-space: nowrap;
}
.keyword { color: #c084fc; }
.function { color: #60a5fa; }
.variable { color: #34d399; }
.string { color: #fbbf24; }
.property { color: #f87171; }
.comment { color: #6b7280; }
/* Features Section */
.features {
padding: 6rem 2rem;
background: var(--background-light);
}
.container {
max-width: 1200px;
margin: 0 auto;
}
.section-title {
text-align: center;
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 3rem;
animation: fadeInUp 0.6s ease-out;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
}
.feature-card {
background: var(--background-dark);
padding: 2rem;
border-radius: 1rem;
border: 1px solid var(--border-color);
transition: all 0.3s ease;
animation: fadeInUp 0.6s ease-out;
}
.feature-card:hover {
transform: translateY(-5px);
border-color: var(--primary-color);
box-shadow: 0 10px 25px rgba(99, 102, 241, 0.1);
}
.feature-icon {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.feature-card h3 {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 1rem;
}
.feature-card p {
color: var(--text-secondary);
line-height: 1.6;
}
/* Partnership Section */
.partnership {
padding: 6rem 2rem;
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
color: white;
}
.partnership-content {
text-align: center;
max-width: 800px;
margin: 0 auto;
}
.partnership-content h2 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1.5rem;
}
.partnership-content p {
font-size: 1.25rem;
margin-bottom: 2rem;
opacity: 0.9;
}
.partnership-features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1rem;
margin-top: 2rem;
}
.partnership-feature {
display: flex;
align-items: center;
gap: 0.5rem;
font-weight: 500;
}
.check {
font-size: 1.25rem;
}
/* Pricing Section */
.pricing {
padding: 6rem 2rem;
background: var(--background-dark);
}
.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.pricing-card {
background: var(--background-light);
border: 1px solid var(--border-color);
border-radius: 1rem;
padding: 2rem;
position: relative;
transition: all 0.3s ease;
animation: fadeInUp 0.6s ease-out;
}
.pricing-card:hover {
transform: translateY(-5px);
border-color: var(--primary-color);
}
.pricing-card.featured {
border-color: var(--primary-color);
box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2);
}
.pricing-badge {
position: absolute;
top: -10px;
left: 50%;
transform: translateX(-50%);
background: var(--primary-color);
color: white;
padding: 0.5rem 1rem;
border-radius: 1rem;
font-size: 0.875rem;
font-weight: 600;
}
.pricing-header {
text-align: center;
margin-bottom: 2rem;
}
.pricing-header h3 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 1rem;
}
.price {
display: flex;
align-items: baseline;
justify-content: center;
gap: 0.25rem;
}
.currency {
font-size: 1.5rem;
color: var(--text-secondary);
}
.amount {
font-size: 3rem;
font-weight: 700;
color: var(--primary-color);
}
.period {
font-size: 1rem;
color: var(--text-secondary);
}
.pricing-features {
list-style: none;
margin-bottom: 2rem;
}
.pricing-features li {
padding: 0.5rem 0;
color: var(--text-secondary);
}
.btn-pricing {
width: 100%;
padding: 1rem;
border: none;
border-radius: 0.5rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}
.btn-pricing.featured {
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
color: white;
}
.btn-pricing:not(.featured) {
background: var(--surface-dark);
color: var(--text-primary);
border: 1px solid var(--border-color);
}
.btn-pricing:hover {
transform: translateY(-2px);
}
/* Modal Styles */
.modal {
display: none;
position: fixed;
z-index: 2000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(5px);
}
.modal-content {
background: var(--background-light);
margin: 5% auto;
padding: 2rem;
border-radius: 1rem;
width: 90%;
max-width: 500px;
position: relative;
animation: fadeInUp 0.3s ease-out;
}
.modal-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 2rem;
}
.modal-header h3 {
font-size: 1.5rem;
font-weight: 600;
}
.close {
font-size: 2rem;
cursor: pointer;
color: var(--text-secondary);
transition: color 0.3s ease;
}
.close:hover {
color: var(--text-primary);
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 500;
}
.form-group input {
width: 100%;
padding: 0.75rem;
border: 1px solid var(--border-color);
border-radius: 0.5rem;
background: var(--background-dark);
color: var(--text-primary);
font-size: 1rem;
}
.form-group input:focus {
outline: none;
border-color: var(--primary-color);
}
.modal-footer {
text-align: center;
margin-top: 1.5rem;
}
.modal-footer a {
color: var(--primary-color);
text-decoration: none;
}
/* Footer */
.footer {
background: var(--background-light);
padding: 4rem 2rem 2rem;
border-top: 1px solid var(--border-color);
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.footer-section h4 {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 1rem;
}
.footer-section ul {
list-style: none;
}
.footer-section ul li {
margin-bottom: 0.5rem;
}
.footer-section ul li a {
color: var(--text-secondary);
text-decoration: none;
transition: color 0.3s ease;
}
.footer-section ul li a:hover {
color: var(--text-primary);
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid var(--border-color);
color: var(--text-secondary);
}
/* Responsive Design */
@media (max-width: 768px) {
.nav-links {
display: none;
}
.hero-container {
grid-template-columns: 1fr;
text-align: center;
}
.hero-title {
font-size: 2.5rem;
}
.hero-cta {
flex-direction: column;
}
.hero-stats {
justify-content: center;
}
.features-grid {
grid-template-columns: 1fr;
}
.pricing-grid {
grid-template-columns: 1fr;
}
}
/* Utility Classes */
.gradient-text {
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
background-size: 200% 200%;
animation: gradient 3s ease infinite;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}